wordpress IIS URL重定向后的URL重定向(使用完全匹配),它仅从URL显示相同[已关闭]

pn9klfpd  于 2022-11-22  发布在  WordPress
关注(0)|答案(1)|浏览(156)

已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题吗?**通过editing this post添加详细信息并阐明问题。

8天前关闭。
Improve this question
IIS URL重定向后的URL重定向(使用完全匹配)它显示相同的URL只。像这样(faq/general-information/can-i-check-the-status-of-my-orders/?lang=zh-hans)。我想重定向此URL
来自url:localhost:96/常见问题解答/一般信息/可以查看我的订单状态/?lang=zh-hans
收件人网址:https://stackoverflow.com/questions/ask
重定向后我得到这个网址localhost:96/faq/general-information/can-i-check-the-status-of-my-orders/?lang=zh-hans.我不知道为什么.发生了什么事?

eoxn13cs

eoxn13cs1#

根据您的描述,我认为您希望创建将localhost:96/faq/general-information/can-i-check-the-status-of-my-orders/?lang=zh-hans重定向到https://stackoverflow.com/questions/ask的重定向规则
请尝试使用以下规则:

<rewrite>
   <rules>
      <rule name="GMDRedirect29" stopProcessing="true">
         <match url="faq/general-information/can-i-check-the-status-of-my-orders" />
         <conditions>
            <add input="{QUERY_STRING}" pattern="lang=zh-hans" />
         </conditions>
         <action type="Redirect" url="https://stackoverflow.com/questions/ask" />
      </rule>
    </rules>
</rewrite>

相关问题