我有关于Url重写模块的问题。
我想在我的网站中实现永久重定向(301)。和网址是,我想永久重定向
http://demo.datadiary.com/search/product/ahmedabad/ac_dealers
url to
http://demo.datadiary.com/search/product/ahmedabad/ac-dealers
提前致谢。
答案 0 :(得分:1)
我得到了解决方案。将以下内容放入您的web.config中,但请记住,您的主机必须已在iis中安装了Url重写模块。
<rule name="Imported Rule 1-2" stopProcessing="true">
<match url="(search/product/ahmedabad.*/[^/]*?)_([^/_]*)$" ignoreCase="false" />
<action type="Redirect" url="{R:1}-{R:2}" redirectType="Permanent" />
</rule>