gpt4 book ai didi

asp.net - IIS Web.Config 301 重定向查询字符串参数 (?)

转载 作者:行者123 更新时间:2023-12-02 13:45:05 25 4
gpt4 key购买 nike

    <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”。

有什么想法吗?

最佳答案

终于找到解决办法了:

/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

关于asp.net - IIS Web.Config 301 重定向查询字符串参数 (?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11039158/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com