无法通过正则表达式oscthumb.php查询字符串进行重定向

时间:2018-10-24 18:46:47

标签: regex .htaccess http-status-code-301

我无法解决这个问题。我需要重定向此类网址:

http://www.example.com/oscthumb.php?src=/images/image.jpg

http://www.example.com/oscthumb.php?src=/images/image.jpg&w=150&h=131.8125&f=jpg&q=95&hash=317ec2edb3fa82e56787a5f3308d5e96

http://www.example.com/images/image.jpg

无参数。 Image.jpg会有所不同

如何在.htaccess中做到这一点?

我尝试了此操作,但无法正常工作:

RewriteEngine On
RewriteCond %{REQUEST_URI}  ^/oscthumb\.php$
RewriteCond %{QUERY_STRING} ^src=(.*)$
RewriteRule ^(.*)$ http://example.com/%1 [R=301,L]

1 个答案:

答案 0 :(得分:0)

尝试使用此代码:

$url = $_GET['src'];
header('Location: http://www.example.com/' . $url);
exit;

编辑: .htaccess:

RewriteEngine On
RewriteCond %{REQUEST_URI} \.jpg
RewriteRule =([^=]+\.jpg) http://example.com$1 [R=301,L]