我是Url重写规则的新手,所以感谢任何帮助。
希望创建一个能够处理以下任何内容的IIS Url重写
http://localhost/homepage/contact-us.aspx -> http://localhost/contact-us.aspx
http://localhost/homepage/about-us.aspx -> http://localhost/about-us.aspx
有什么想法吗?
答案 0 :(得分:0)
我没有对此进行过测试,但我认为您的web.config文件中会有类似的内容。
您可以编辑web.config文件,然后进入IIS,如果要测试它,则应显示规则。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="rewriterule1" enabled="true" stopProcessing="false">
<match url="homepage/(.*)" />
<action type="Rewrite" url="http://localhost/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>