This is one that comes up a lot. I'm having issues implementing pretty links on a IIS box. I have added a web.comfig file to my htdoc folder with the following code:
[Code moderated as per the Forum Rules. Please use the pastebin]
guration>
and I've added an .htaccess file into my htdoc folder with:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
`
and with both of these changes it is not working.
my server is IIS with the following;
Operating System
Express Server Update
Web Scripting
PHP 5, CGI
Many Thanks