Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 htaccess 重写引擎将“空”子域http://domain.com重定向到http://www.domain.com 。它必须是 301 永久重定向,并传达 url 和查询字符串的其余部分。
尝试将这些规则放在文档根目录的 htaccess 文件中:
RewriteEngine On RewriteCond %{HTTP_HOST} ^domain\.com$ [NC] RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
查询字符串会自动附加。