I'm getting 404 errors on all posts and pages. I was trying to install the WP Super Cache plugin today but it wasn't working so I backed out and now I get this. I'm pretty sure it is a .htaccess error but not sure how to fix it. Please help!
I'm getting 404 errors on all posts and pages. I was trying to install the WP Super Cache plugin today but it wasn't working so I backed out and now I get this. I'm pretty sure it is a .htaccess error but not sure how to fix it. Please help!
this is my .htaccess file
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
# -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 onetreehillblog.com
AuthUserFile /home/onetree/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/onetree/public_html/_vti_pvt/service.grp
I was missing this from my wordpress section
RewriteEngine On
RewriteBase /
This topic has been closed to new replies.