htaccess从其他网站重写图片网址

时间:2012-07-18 02:08:30

标签: image .htaccess rewrite cloaking

我想从其他网站重写图片网址,例如:

来自其他网站的图片:

http://othersite.com/images/dir/image1.jpg

我想把这个链接隐藏起来:

http://mysite.com/images/dir/image1.jpg

现在我使用这个htaccess

RewriteRule ^images/dir/(.*)$ http://othersite.com/images/dir/$1 [L,R=301]

它的工作,当链接打开时它将变成原始链接,我希望访问者仍然会看到链接没有更改为原始链接

1 个答案:

答案 0 :(得分:0)

尝试删除R = 301,以便仍然转发请求但不重写网址。如果其他网站不是您自己的网站,您应该获得使用其图片的权限。除版权问题外,Hotlinking在技术上是在窃取带宽,如果网站管理员知道他在做什么,就不难发现和关闭....