zaphod22
Member
Posted 5 years ago #
I can go through the process fairly effortlessly, and it will create the correct linking structure, but after the .htaccess is created, I get a 403 forbidden error for everything in that directory. I know that it has something to do with the .htaccess file because I can remove it and the problem goes away.
How does WP handle such URL rewrites, and is there any way to modify that? This is what it gives me:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule>
# END WordPress
The above is absolutely correct. What "directory" does it keep you out of?
zaphod22
Member
Posted 5 years ago #
I have this on a personal server at the moment, so it is at: localhost/wordpress/
It won't even let me into the admin panel or any other subdirectory.
paulsjv
Member
Posted 5 years ago #
I had this problem and I added the following line to my .htaccess file on the first line.
Options +FollowSymLinks
poof it's all working now :)
mediter
Member
Posted 4 years ago #
anybody care enough to explain why this line soled the problem?
mine is working now by adding this line. Thank you very much, paulsjv!