我想通过 ip 和域访问我的网站,但想 google 索引 ip

i want to access my website by ip and domain but want to google indexing ip

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

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

这没有给我解决方案。我想同时访问但不想通过 ip

建立索引

谢谢!

您可以使用 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]