如果来自Google,请将测试链接重定向到旧版本

时间:2013-10-22 10:36:54

标签: .htaccess seo

因此,在为客户端执行项目时,.htaccess的某些问题会导致Google引用测试网址。这不是超级......

所以,我想知道是否有可能在somebod

时重定向到实时网址

2 个答案:

答案 0 :(得分:2)

将此添加到您的网络根.htaccess目录

中的/
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]

答案 1 :(得分:0)

您可以拥有此规则:

##  check if it is coming from google
RewriteCond %{HTTP_REFERER} ^https?://(www\.)?google\. [NC] 
RewriteRule ^test/?$ /live/ [NC,L,R=301]