I'm having problems with Wordpress with friendly URLs. It simply does not work even using the .htaccess file suggested by the Wordpress support site.
cat .htaccess
# 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
I believe the error is in the Apache
setting.
Any ideas how to resolve this?