<rule name="blog" stopProcessing="true">
<match url="en/blog.aspx?Id=9" />
<action type="Redirect" url="http://www.mynewurl.com" redirectType="Permanent" />
</rule>我可以重定向"en/blog.aspx“,但我不能只重定向"en/blog.aspx?Id=9”。
有什么想法吗?
发布于 2012-06-15 02:34:03
最终找到了解决方案:
/en/blog.aspx?Id=9将重定向到http://www.newurl.com。
<rule name="blog" stopProcessing="true">
<match url="en/blog.aspx$" />
<conditions>
<add input="{QUERY_STRING}" pattern="Id=9" />
</conditions>
<action type="Redirect" url="http://www.newurl.com" redirectType="Permanent" />
</rule>在这里找到了解决方案:301 redirect not working in IIS 7
https://stackoverflow.com/questions/11039158
复制相似问题