My site is a Wordpress-site
created with PHP
.
I have made changes in permalink default to postname. It works fine in Chrome
and Firefox
but not in IE8. The front page displays correctly but when I click a link to another page, it shows a 404 page not found error.
I'm using Wordpress version 3+.
.htaccess file is
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule>
# END WordPress
where WordPress is folder name. also in apache rewrite_module is enable