htaccess重定向到url参数

时间:2017-02-01 09:44:38

标签: .htaccess redirect mod-rewrite

是否可以使用htaccess从

重定向
http://example.com/redirect.php?url=http%3A%2F%2Fanother.com%2Fsmiley.gif

到url参数,

http://another.com/smiley.gif

请建议。

1 个答案:

答案 0 :(得分:0)

您可以使用:

RewriteEngine on

RewriteCond %{THE_REQUEST} /redirect\.php\?url=.+([^/]+\.gif)\s [NC]
RewriteRule ^ http://another.com/%1? [NE,L,R]

这会将 /redirect.php?url=foobar/foobar.gif 重定向到 http://another.com/foobar.gif