gpt4 book ai didi

.htaccess - mod 重写 : handling sub domains, 顶级域和查询字符串

转载 作者:行者123 更新时间:2023-12-04 19:57:59 25 4
gpt4 key购买 nike

我想将任何以 [subdomain.]example.TLD[/?query_string] 开头的 URL stat 重定向到 example.org[/?query_string]

以下规则集均有效,但不能组合使用。IE。 www.example.com => example.orgexample.com/?query_string => example.org/?query_string

RewriteEngine On

RewriteCond %{HTTP_HOST} !=example.org
RewriteCond %{QUERY_STRING} !^$
RewriteRule ^(.*)$ http://example.org/$1?%{QUERY_STRING} [R=301,L]

RewriteCond %{HTTP_HOST} !=example.org
RewriteCond %{QUERY_STRING} ^$
RewriteRule ^(.*)$ http://example.org/$1 [R=301,L]

最佳答案

您只需要一个规则,因为 QUERY_STRING 会在重定向后自动复制到。

RewriteCond %{HTTP_HOST} !^example\.org$ [NC]
RewriteRule ^ http://example.org%{REQUEST_URI} [R=301,L]

关于.htaccess - mod 重写 : handling sub domains, 顶级域和查询字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17845744/

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