我无法解决这个问题。我需要重定向此类网址:
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]
答案 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]