有什么方法可以转换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.com2)和?在原始链接中将被&
非常感谢答案 0 :(得分:1)
您可以在DOCUMENT_ROOT/.htaccess
文件中使用此代码:
RewriteEngine On
RewriteBase /
RewriteRule ^theimages/(.+)/?$ phpThumb/phpThumb.php?src=http://example.com/$1 [L,NC,QSA,NE]