如何在IIS7中配置URL重写规则以将我的aditional域(domain.net,domain.org,domain.info)重定向到主体.com域?
答案 0 :(得分:2)
在IIS7中,您可以使用新命令“appcmd.exe”启用重定向,如下所示:
%windir%\system32\inetsrv\appcmd set config "Default Web Site/" -section:system.webServer/httpRedirect -enabled:true -destination:"http://domain.com"
这告诉IIS将发送到虚拟应用程序“/”的所有请求重定向到“http://domain.com”。实际结果是appcmd.exe将以下部分添加到“/”的web.config文件中:
你的domain.net的web.config
<system.webServer>
<httpRedirect enabled="true" destination="http://domain.com" httpResponseStatus="Permanent"/>
</system.webServer>