.htaccess将所有子域重定向到URL

时间:2018-02-07 16:43:35

标签: apache .htaccess url redirect subdomain

如何将所有子域重定向到URL 这是场景:

abc.xxx.com转到abc.xxx.com/index.php?id=abc www.xxx.com/abc或xxx.com/abc也使用相同的URL:abc.xxx.com/index.php?id = abc

请记住网站上没有/ abc文件夹

,文件index.php是主域的根文件

我想将abc保留在子域中以用于SEO目的。

提前致谢。

1 个答案:

答案 0 :(得分:0)

我认为您必须首先检查URL是否包含“index.php?id =”以防止无限循环。

RewriteCond %{REQUEST_URI} !index\.php\?id= [NC]