我想重定向www.example.com到example.com. 以下 htaccess 代码使这种情况发生:
www.example.com
example.com
RewriteCond %{HTTP_HOST} ^www\.example\.com [NC] RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
但是,有没有办法在不硬编码域名的情况下以通用方式做到这一点?
RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
和迈克尔的一样,除了这个有效:P