我可以将 www .net URL 转发到 www .com。但是如何将非 www .net 转发到 www .com?
下面的代码是我在 .htaccess 文件中使用的代码,它部分工作。
RewriteCond %{HTTP_HOST} !^www\.example\.net$ [NC]
RewriteCond %{HTTP_HOST} ^www\.example\.net$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]