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 文件将非 www 流量重定向到网站的 www 版本-我知道我在根目录中创建了一个,但不确定要放什么..任何想法
比较容易。
匹配不以“www”开头的任何内容。然后重定向到“www”。版本:
RewriteEngine On RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]