【发布时间】:2014-10-26 02:09:11
【问题描述】:
我想要这个:
domain.tld 到 www.domain.tld
和其他子域:sub.domain.tld 没有重定向到 www.sub.domain.tld
【问题讨论】:
标签: .htaccess redirect web apache2
我想要这个:
domain.tld 到 www.domain.tld
和其他子域:sub.domain.tld 没有重定向到 www.sub.domain.tld
【问题讨论】:
标签: .htaccess redirect web apache2
您可以将此代码放在您的 htaccess 中(在根文件夹中)
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain\.tld$ [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
【讨论】:
domain.tld 到 www.domain.tld 时重定向。否则它不会重定向任何东西