First if all: yes, I have read a lot of other supposrt posts already about this.
I have set up permalinks successfully before on a hosted server from a popular provider. Meaning I know the process and how to setup the .htaccess and all that for wordpress to use the pretty links.
Now I'm trying to setup permalinks in a wordpress instalation on my own server at my company. The Apache is setup and the mod_rewrite function is installed.
The htaccess was created by wordpress and i added the "Options +Followsymlinks" line as suggested in another post on this board (I also tried it without the followsymlinks line).
So it looks like this now:
# BEGIN WordPress
<IfModule mod_rewrite.c>
Option +Followsymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Also, the Apache server is configured like this:
<Directory/>
Options Name
AllowOverride All
Order deny, allow
Deny from all
</Directory>
Still, this time around Im not so lucky. It just doesn't work. What could be the problem in the config files or what other cause could there be that the pretty links not work for me?
Thanks in advance... Hope somebody can give me some advice.