我在urlrewrite.config
中添加了以下代码以重定向 <add name="regx" virtualUrl="~/about/(.*)/2016/(.*)/12/"
redirect="Application" destinationUrl="~/about/$1"
redirectMode="Permanent" />
我添加了以下代码以在web.config中重写
<rewrite>
<rules>
<rule name="regx">
<match url="^/about/news/2016/(.*)/12/" />
<action type="Rewrite" url="about/news/2016/{R:1}/12" />
</rule>
</rules>
</rewrite>
以上代码更改了我的网址&#34; // 192.168.18.159:8741/about/news/2016/feb/12" to&#34; // 192.168.18.159:8741/about/news/"。它被重定向到新闻页面我无法重定向到精确的网址&#34; // 192.168.18.159:8741/about/news/2016/feb/12"
我无法重写和重定向我添加了UrlRewritingNet.UrlRewriter.dll并在网络配置中正确使用。
我需要更改我的网址&#34; // 192.168.18.159:8741/about/news/2016/feb/12" to&#34; // 192.168.18.159:8741/about/news/feb /"
请尽快给出一些解决方案。提前致谢