我有一个名为 exmaple.com 的网站有很多子域
test1 , test2 , test2.example.com
例如,我如何将具有确切子域的子域重定向到另一个域名
test1 , test2 , test3.example.net
谢谢
我有一个名为 exmaple.com 的网站有很多子域
test1 , test2 , test2.example.com
例如,我如何将具有确切子域的子域重定向到另一个域名
test1 , test2 , test3.example.net
谢谢
使用 %1 %2 等从 RewriteCond 中获取正则表达式匹配组。
您可能知道,$1 $2 匹配 RewriteRule 中的正则表达式组
在我的脑海中,这在 mod_rewrite 活跃时非常简单:
RewriteEngine On
RewriteCond %{REQUEST_HOST} (.+)\.example\.com
RewriteRule (.*) http://%1.example.net$1 [R,QSA]
这假设您从单个虚拟主机为所有这些子域提供服务,但如果不是,您可以将此规则集复制到每个人的配置或 .htaccess 中。
这可能有效。把它放在你的 .htaccess 中。
RewriteEngine On
RewriteCond %{HTTP_HOST} (.*).example.com
RewriteRule (.*) http://%1.example.net/$1 [R=301,QSA,L]
还没有测试它,但它应该给你一个开始。