2016-03-03 48 views

回答

-1

你應該檢查你的HTTP頭。如果www.example.com給404未找到錯誤,Google將不會索引該子域。

要確保你有兩個版本idexed還的內容,避免重複,嘗試添加到您的.htaccess:

RewriteEngine on 
# Redirect non-www to wwww 
RewriteCond %{HTTP_HOST} !^www\.yourdomain\.org [NC] 
RewriteRule ^(.*)$ http://www.yourdomain.org/$1 [R=301,L] 
相關問題