gpt4 book ai didi

apache - 使用 .htaccess 将 example.(us|es) 重定向到子域 (us|es).example.com

转载 作者:行者123 更新时间:2023-12-02 01:37:48 24 4
gpt4 key购买 nike

我最近为我的网站购买了一个新域,我想将使用旧域访问的任何人重定向到新域。

例如,如果他们去了其中任何一个:

http://www.example.com -- NOT REDIRECT 
http://example.com -- NOT REDIRECT


http://www.example.us --> http://us.example.com -- REDIRECT
http://www.example.es --> http://es.example.com -- REDIRECT
http://example.us --> http://us.example.com -- REDIRECT
http://example.es --> http://es.example.com -- REDIRECT

您如何使用 .htaccess 文件执行这个简单的 .us|.es -> 子域重定向?任何规则都应适用于所有 URL。

提前致谢。

最佳答案

试试这个:

RewriteCond %{HTTP_HOST} example.us$ 
RewriteRule (.*) http://us.example.com [L,R=301]

RewriteCond %{HTTP_HOST} example.es$
RewriteRule (.*) http://es.example.com [L,R=301]

关于apache - 使用 .htaccess 将 example.(us|es) 重定向到子域 (us|es).example.com,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30140113/

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