Sorry if there is already a topic about this...
I have a very simple php-run CMS that uses the mod rewrite function. And, like everyone else, I'm having trouble accessing the pages under their rewritten urls (404 errors).
I've set my permissions to 755 (they were even originally lower) and replaced my .htaccess with the original file, which reads:
But the problem still persists. Has anyone found a working solution?
I have a very simple php-run CMS that uses the mod rewrite function. And, like everyone else, I'm having trouble accessing the pages under their rewritten urls (404 errors).
I've set my permissions to 755 (they were even originally lower) and replaced my .htaccess with the original file, which reads:
Code:
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName mariovsonic.pcriot.com
AuthUserFile /home/marvso/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/marvso/public_html/_vti_pvt/service.grp
ErrorDocument 404 /notfound.html
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*)\.htm$ index.php?page=$1
But the problem still persists. Has anyone found a working solution?