Alternative to Apache’s .htaccess file for IIS?

Posted by user80151 on Stack Overflow See other posts from Stack Overflow or by user80151
Published on 2009-11-22T07:24:03Z Indexed on 2010/04/11 1:03 UTC
Read the original article Hit count: 235

Filed under:
|
|

I'm moving a WordPress blog from Apache to IIS. It's just for a couple weeks until I get it changed out. But all I can get to is the homepage. Everything else throws errors.

I think my problem is in the .htaccess file:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
#END WordPress

Is there something equivalent to this for IIS?

Thanks.

© Stack Overflow or respective owner

Related posts about iis

Related posts about server-migration