Hello, yes another clean URL question. i have followed stickie instructions, and confirmed my server has modrewrite. yet i get 404 File Not Found errors on exhibit pages. i believe this is because my site is in a subfolder.
http://www.ericforman.com/newSite/
i found a forum post that said you need to add this subdirectory to .htaccess. so i did this:
RewriteRule ^(.+) index.php
RewriteRule ^(.+) /newSite/index.php
and now I don't get 404 error, which is good, but every exhibit page just shows the About page.
i tried removing the first line above so the only RewriteRule is for subdirectory, but same thing.
so after digging around in the forums, i systematically tried every suggestion (obviously i am an amateur here), and none of them worked:
Options -MultiViews
Options +FollowSymlinks
RewriteBase /
finally i set MODREWRITE back to false, and strangely enough the exhibit page clean URL works!
define('MODREWRITE', false);
but of course none of the nav links go to that page, because MODREWRITE is set to false. i am mystified. can anyone help?
again, you can see this in action by going to the above example exhibit from the main nav, in which case you will arrive at:
http://www.ericforman.com/newSite/index.php?/projects/timeflow/
and then you can go to what the clean URL would be and see that it works:
http://www.ericforman.com/newSite/projects/timeflow/
if MODREWRITE is set to true, however, the link above would *not* work and would only display the About page.
thanks for any guidance,
eric