我正在为我的网站更改论坛软件。我想重定向董事会 URL。例如,旧 URL 是 example.com/forum/genika/board1,新 URL 是 example.com/forum/boards/board1
我创建了这个简单的规则:
<rule name="forum/genika" patternSyntax="Wildcard" stopProcessing="true">
<match url="*/forum/genika/*" />
<action type="Redirect" url="{R:1}/forum/boards/{R:2}" />
</rule>
但这似乎不起作用。我究竟做错了什么?
测试整个 url https://www.example.com/forum/genika/board1的模式匹配通配符模式,我相应地使用 {R:1} 和 {R:2}。
这没有意义。它一定是IIS故障还是其他什么?
谢谢亚历克斯