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.
我似乎找不到将 .com 域的所有非 www 和 www 重定向到 .co.uk 域的语法。我可以找到 .co.uk 到 .com,但不是这样。
执行此操作的 htaccess 片段是什么?
例如
www.domain.com redirects to www.domain.co.uk
和
domain.com redirects to www.domain.co.uk
你可以试试这个:
RewriteEngine On RewriteCond %{HTTP_HOST} domain\.com$ [NC] RewriteRule ^(.*)$ http://www.domain.co.uk/$1 [L,R=301]