使用 IIS7 URL 重写模块将其他域重定向到主 .com 域
我应该如何在 IIS7 中配置 URL 重写规则以将我的其他域(domain.net、domain.org、domain.info)重定向到主体 .com 域?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我应该如何在 IIS7 中配置 URL 重写规则以将我的其他域(domain.net、domain.org、domain.info)重定向到主体 .com 域?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
在 IIS7 中,您可以使用新命令“appcmd.exe”来启用重定向,如下所示:
这告诉 IIS 将发送到虚拟应用程序“/”的所有请求重定向到“http://domain.com”。 实际结果是appcmd.exe将以下部分添加到web.config文件中的“/”:
您的domain.net的web.config
In IIS7, you can use the new command “appcmd.exe” to enable redirection as following:
This tells IIS to redirect all request sending to the virtual application “/” to “http://domain.com”. The actual result is that appcmd.exe adds the following section to the web.config file for “/”:
web.config of your domain.net