标签: .htaccess drupal redirect
如何将www.sub.domain.com重定向到sub.domain.com?
其他信息:
答案 0 :(得分:0)
这对.htaccess文件有帮助吗?
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L] </IfModule>
另外:https://drupal.stackexchange.com/questions/50552/how-to-keep-domain-consistency-with-or-without-www/50553#50553