本文介绍了通过appcmd重写的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用appcmd创建urlrewrite url来重定向来自

I want to create urlrewrite url using appcmd for redirecting all requests from

我尝试用Google搜索,但未找到任何内容.您能给我一些基本的例子吗?

I tried to google but nothing found. Could you provide me some basic example?

推荐答案

使其与此配合使用:

appcmd.exe set config -section:system.webServer/rewrite/rules /+"[name='http_redirect',enabled='True']" /commit:apphost

appcmd.exe set config -section:system.webServer/rewrite/rules.[name='http_redirect'] /match.url:"(.*)" /match.ignoreCase:true /commit:apphost

appcmd.exe set config -section:system.webServer/rewrite/rules.[name='http_redirect'].conditions/add /+"[input='{HTTPS}',pattern='off']" /commit:apphost

appcmd.exe set config -section:system.webServer/rewrite/rules.[name='http_redirect'].action /+"[type='Redirect',url='https://{HOST_NAME}/{R:1}',redirectType='Found']" /commit:apphost

链接可以帮助构建 appcmd 脚本.

这篇关于通过appcmd重写的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 20:28