1

我正在使用 URL 重写来制作用户友好的 URL。所以www.mysite.som/searchwww.mysite/search.aspx正确处理。但我还想要一件事。我想阻止直接访问我的页面search.aspx。因此,如果有人输入 www.mysite.com/search.aspx,他应该被重定向到www.mysite.com/search

我尝试了什么?

<rewrite>
<rule name="Redirect to friendly" stopProcessing="true">
  <match url="^(.*)\.aspx$" />
  <action type="Redirect" url="{R:1}" />
</rule>
</rewrite>

但它不起作用。

4

0 回答 0