IIS重定向 - 命令行

时间:2011-01-12 04:49:34

标签: iis powershell iis-7 command-line

我有一个网站www.mywebsite.com/demo。如果有人要求这个网站,我想导航到另一个网站www.myanotherwebsite.com。我知道这可以通过使用HTTP重定向功能在IIS中完成。但是因为我想为不同的网站做这个,我想写一个bat文件,它将运行命令来设置网站的重定向网址。有谁可以帮我如何通过命令行设置重定向URL?

编辑:我正在使用IIS 7

1 个答案:

答案 0 :(得分:3)

查看此PowerShell脚本

http://forums.iis.net/t/1162778.aspx

Set-WebConfiguration system.webServer/httpRedirect "IIS:\sites\Default Web Site" -Value @{enabled="true";destination="domain.com";exactDestination="true";httpResponseStatus="Permanent"}