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 添加到任何主机:
RewriteCond %{HTTP_HOST} ^([^.]+)\.([a-z]{2,4})$ [NC] RewriteRule ^(.*)$ http://www.%1.%2/$1 [L,R=301]
从子域中删除 www:
RewriteCond %{HTTP_HOST} ^www\.(.*)\.([^.]+)\.([a-z]{2,4})$ [NC] RewriteRule ^(.*)$ http://%1.%2.%3/$1 [L,R=301]