我想通过IP和域访问我的网站,但想谷歌索引IP

时间:2015-01-07 10:01:15

标签: php apache .htaccess seo

我想通过ip和域访问我的网站,但我不想谷歌索引IP。以谷歌为例,我可以通过doamin https://www.google.com/和ip http://202.166.193.159/访问谷歌。 我这样做累了301重定向htaccess

RewriteEngine On
RewriteCond %{HTTP_HOST} ^202\.166\.193\.159$
RewriteRule ^(.*)$ https://www.google.com/$1 [L,R=301]

这并没有给我解决方案。我希望两者都能访问,但不希望通过ip进行索引

谢谢!

1 个答案:

答案 0 :(得分:1)

您可以使用root .htaccess重定向到Googlebot:

RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} ^googlebot
# With your IP !
RewriteCond %{HTTP_HOST} ^202\.166\.193\.159$
# With your domain !
RewriteRule ^ https://www.google.com%{REQUEST_URI} [L,R=301,NE]