如何在htaccess中为来自“新”Google图片(google.com/images)而不是旧图片(images.google.com)的流量进行重定向?
答案 0 :(得分:1)
在你的.htaccess中试试这个:
RewriteEngine on
RewriteCond %{HTTP_REFERER} ^http://google.com/images [NC]
RewriteRule .* new-redirect-url [NC,L]
如果您希望进行301重定向,可以选择将R = 301附加到RewriteRule标记,例如:NC,L,R=301
。
此外,如果需要,调整引用URL,这是一种通用的解决方案。