重写规则未生效

时间:2013-06-23 15:50:10

标签: url-rewriting

我正在尝试使用我的.htaccess文件和以下语法重写一些URL:

RewriteEngine On
RewriteRule ^movie/([0-9]+)/$ movie.php?id=$1

基本上,网址http://screeningapp.co.uk/movie.php?id=771316320应该重写为http://screeningapp.co.uk/movie/771316320,但这种情况不会发生,我不确定原因。

谢谢!

1 个答案:

答案 0 :(得分:0)

RewriteEngine On

RewriteRule ^movie/([0-9]+)/?$ /movie.php?id=$1 [L,nc]

#if you wanna redirect movie.php?id=1 to movie/1/
RewriteCond %{QUERY_STRING} ^id=([0-9]+)($|&)
RewriteRule ^movie.php$ /movie/%1? [R=301,L,NC]