因此,在为客户做项目时,.htaccess
导致 Google 引用测试 URL 时遇到了一些麻烦。哪个不是超级...
所以,我想知道是否有可能在某人出现时重定向到实时 URL
将此添加到您.htaccess
的 Web 根/
目录中
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_USER_AGENT} googlebot [NC,OR]
RewriteCond %{HTTP_REFERER} ://[^.]+\.google\. [NC]
RewriteRule ^test/page\.php$ http://domain.com/live/page.php [R=301,NC,L]
你可以有这个规则:
## check if it is coming from google
RewriteCond %{HTTP_REFERER} ^https?://(www\.)?google\. [NC]
RewriteRule ^test/?$ /live/ [NC,L,R=301]