如何让 filenotonserver.html 显示在浏览器中?而不是 404 错误。如何进行 URL 重写以将 .html 与 default2.aspx 匹配,反之亦然?
这有什么意义吗?我肯定是 URL 重写的新手...
k,一直在环顾四周:
<rewrite>
<rules>
<rule name="SpecificRedirect" stopProcessing="true">
<match url="^page$" />
<action type="Redirect" url="/page.html" />
</rule>
</rules>
</rewrite>
在“匹配 url”中尝试匹配 .html 和操作类型将是 default.aspx?p=whatevetmatched.html
请问有什么想法吗?