1
我的WordPress網站上有一些Google索引問題。 當我將我的網站谷歌網站管理員的.htaccess
是以下Googlebot無法訪問我的WordPress robots.txt
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
現在,我想這些行添加到.htaccess
文件,但谷歌仍然沒有索引我的網站。
# BOT SETTINGS
SetEnvIfNoCase User-Agent .*google.* search_robot
SetEnvIfNoCase User-Agent .*yahoo.* search_robot
SetEnvIfNoCase User-Agent .*bot.* search_robot
SetEnvIfNoCase User-Agent .*ask.* search_robot
Order Deny,Allow
#Deny from All
Allow from env=search_robot
我在哪裏做錯了?
請嘗試刪除** SetEnvIfNoCase User-Agent。* google。* search_robot **部分然後重新提交。 –
我是一個防火牆問題。謝謝大家 – bit