gpt4 book ai didi

php - mod 重写规则,用于从 url 中搜索字符串并仅替换该 url 的域名

转载 作者:搜寻专家 更新时间:2023-10-31 21:29:55 25 4
gpt4 key购买 nike

我想为 .htaccess 创建重写规则。例如:在 url 中,如果找到 Itemid=702 那么我只想重定向到下面

原网址是:

www.dashboard.example.com/comp/temp/health/appt?Itemid=702

重定向到:

www.admin.example.com/comp/temp/health/appt?Itemid=702

我试过以下条件,但它不起作用。

RewriteCond %{REQUEST_URI} Itemid=702$
RewriteRule .* http://admin.example.com [R,L]

我该如何创建它?

最佳答案

你很接近,将规则更改为:

RewriteCond %{QUERY_STRING} Itemid=702 [NC]
RewriteRule (.*) http://admin.example.com/$1 [R,L]

关于php - mod 重写规则,用于从 url 中搜索字符串并仅替换该 url 的域名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31073395/

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