将任何子域重定向到主域,但特定子域除外


Redirect any subdomain to main domain EXCEPT specific subdomains

几乎是不言自明的.htaccess问题,但只是为了澄清...

例如:

重定向

*.example.com to --> example.com

除了

mobile.example.com (do NOT redirect)
forum.example.com (do NOT redirect)

等。。。

还是直接在cPanel内进行配置更好?

感谢您的帮助!

您可以在DOCUMENT_ROOT/.htaccess文件中使用以下代码:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^(mobile|forum)'. [NC]
RewriteCond %{HTTP_HOST} !^example'.com$ [NC]
RewriteRule ^ http://example.com%{REQUEST_URI} [L,NE,R=302]