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 url 重定向到我网站中的 www url 的最佳方法是什么。
我认为他们现在正在通过 301 重定向进行重定向,但发送到我的非 www 的流量没有被谷歌分析正确跟踪。所以我猜它没有正确配置。
希望有人可以提供帮助。
谢谢
可以使用 Apache 重写引擎和 htaccess 文件来完成对 www 的非 www。在您的公共 html 目录中创建一个 .htaccess 文件,其中包含以下内容..
RewriteEngine On RewriteCond %{HTTP_HOST} !^www.youraddress.com$ [NC] RewriteRule ^(.*)$ http://www.youraddress.com/$1 [R=301,L]