使用htaccess从其他域读取图像

时间:2015-01-22 15:32:36

标签: .htaccess

有什么方法可以转换htaccess:

theimages /库/ tour_preview /布拉尼-Castle_7.jpg F = PNG&安培; W = 250安培; H = 190安培;远= 0

到:

phpThumb / phpThumb.php?SRC = http://example.com/library/tour_preview/Blarney-Castle_7.jpg&f=png&w=250&h=190&far=0

基本上是这样的: 1)' theimages'由phpThumb / phpThumb.php替换?src = http://example.com

2)和?在原始链接中将被&

非常感谢

1 个答案:

答案 0 :(得分:1)

您可以在DOCUMENT_ROOT/.htaccess文件中使用此代码:

RewriteEngine On
RewriteBase /

RewriteRule ^theimages/(.+)/?$ phpThumb/phpThumb.php?src=http://example.com/$1 [L,NC,QSA,NE]