因此,在为客户端执行项目时,.htaccess
的某些问题会导致Google引用测试网址。这不是超级......
所以,我想知道是否有可能在somebod
时重定向到实时网址答案 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]