gpt4 book ai didi

.htaccess - htaccess mod_rewrite : Redirect all subdomains, 排除一些

转载 作者:行者123 更新时间:2023-12-02 11:28:36 26 4
gpt4 key购买 nike

有很多类似的问题,但我找不到这个特定问题的答案:

在我的 .htaccess 中,我进行了重写,将所有子域重定向到 http://example.com :

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

但我希望它忽略 dev.example.com(也许还有其他一些子域)。我想这很容易,但我无法弄清楚。

最佳答案

与排除主域的方式相同:

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

关于.htaccess - htaccess mod_rewrite : Redirect all subdomains, 排除一些,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4670643/

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