403 Forbidden after enabling permalinks
-
I installed WordPress and everything worked fine.
Then I activated permalinks (date and name based). This resulted in the message “You should update your .htaccess now.”. The pages also showed which code I had to place in the .htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /seo-blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /seo-blog/index.php [L]
</IfModule>I did so and did a chmod 666 on the .htaccess-file.
But when I go to the homepage of my weblog now, I get the following message:
“
403
Forbidden
You don’t have permission to access /seo-blog/ on this server.”/seo-blog/ is the directory of my blog. The chmod of this directory is 755.
According to my hostingprovider mod_rewrite is enabled.
What am I doing wrong? Please help.
- The topic ‘403 Forbidden after enabling permalinks’ is closed to new replies.