.htaccess重定向http:/www.domain.com/songs.php?movie =旅程到http:/www.domain.com/songs

时间:2012-02-21 19:22:27

标签: apache .htaccess mod-rewrite redirect

请帮助!

需要从http:/www.domain.com/songs.php?movie = journey重定向到http:/www.domain.com/songs

我需要删除查询字符串(?movie = journey)。我不再想要他们了。

我试过这个

Options +FollowSymlinks
RewriteEngine On
RewriteCond %{Query_STRING} ^movie=journey$
RewriteRule ^(.*)$ /songs/$1 [R,L]

但是在浏览器中显示的是这样的http:/www.domain.com/songs/songs.php?movie = journey

1 个答案:

答案 0 :(得分:0)

在最后一条规则的末尾添加?

Options +FollowSymlinks
RewriteEngine On
RewriteCond %{Query_STRING} ^movie=journey$
RewriteRule ^songs.php(.*)$ /songs/$1? [R,L]