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.
我发现此代码强制使用 www。
RewriteEngine On RewriteCond %{HTTP_HOST} !^www.example.com$ RewriteRule ^(.*)$ http://www.example.com/$1 [R=301]
但是我有很多指向同一个目录的域。所以我需要一个用于多个域的代码版本。它必须在任何域上运行,有可能吗?
这应该有效:
RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+$ RewriteRule ^(.*) http://www.%{HTTP_HOST}/$1 [R=301]
它将所有没有子域的请求重定向到 www.domainame.tld。