我可以看到谷歌使用主域名和cdn域索引我的网站,这意味着可以访问同一页面www.example.com/page和cdn.example.com/page。我找到了这篇文章Subdomains resolving to main site URLs,但没有解决方案。
关于这个问题的任何想法?最好的解决方案是将所有子域(包括www)重定向到domain.com
答案 0 :(得分:0)
我在.htaccess中使用了以下代码:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^yourdomain.com$ [NC]
RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301]
发现于http://codegarage.com/blog/2011/03/how-to-301-redirect-all-subdomains/