1

因此,在为客户做项目时,.htaccess导致 Google 引用测试 URL 时遇到了一些麻烦。哪个不是超级...

所以,我想知道是否有可能在某人出现时重定向到实时 URL

4

2 回答 2

2

将此添加到您.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]
于 2013-10-22T10:40:18.123 回答
0

你可以有这个规则:

##  check if it is coming from google
RewriteCond %{HTTP_REFERER} ^https?://(www\.)?google\. [NC] 
RewriteRule ^test/?$ /live/ [NC,L,R=301]
于 2013-10-22T10:44:18.553 回答