Hi,
I'm using WordPress on an Ubuntu/Apache/MySQL/PHP server. For the "Pretty Permalinks," it uses mod_rewrite. However, it shows a 404 error when one of these links is visited.
Wordpress generated its own .htaccess file, so it should be correct, but I'll post it anyway:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /enl/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /enl/index.php [L]
</IfModule>
# END WordPress
It should turn /enl/?p=123 into /enl/categories/post-name but it isn't doing anything. I even tried restarting the server, but still nothing.
I'm sure that mod_rewrite is enabled; it shows up in phpinfo() under apache2handler Loaded Modules.
Any help is much appreciated.
Thanks a lot in advance,
--Richard