Redirects on Window Servers - .htaccess equivalent for IIS
-
I am going to start searching myself, but I have a client on a Windows server needing to do redirects. So besides my usual 'Get a UNIX box', I need to know how to do redirects on IIS.
Full site redirect:
RewriteCond %{HTTP_HOST} ^[site].com [NC]
RewriteRule (.*) http://www.[site]/$1 [L,R=301]
as well as page level redirects
redirect 301 /[old-page.php] http://www.[site].com/[new-page]
And that leads me to the question of RewiteRules also?
RewriteRule ^[requested-page].html [server-fed-page].php [L]
Thanks if anyone can [redirect] me to a good URL for these.

Richard
-
Here are three I found. I am not an IIS person at all, so help on if these are what I want.
http://knowledge.freshpromo.ca/seo-tools/301-redirect.php
Thanks again!