So I'm trying to use "pretty links" for my wordpress blog but all the links are broken when I turn them on (posts, pages, everything).
I think it has something to do with the .htaccess file and symbolic links.
Here is my .htaccess which I think is correct.. but it is simply not working.
Code:
Options +FollowSymLinks
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress