mod_rewrite is not working for my wordpress install on fedora. The module is loading, and AllowOveride is set to All in httpd.conf.
Ive restarted apache, and restarted the machine also incase that worked. Im totally lost.
here is my .htaccess file
AddType x-mapp-php5 .php
Allowoverride FileInfo
# to protect thisfile
<Files ~ "^\.htaccess">
Order allow,deny
Deny from all
</Files>
# to protect wp-config.php
<Files wp-config.php>
order allow,deny
deny from all
</Files>
# BEGIN WordPress
<IfModule mod_rewrite.so>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Thanks