使用mod_rewrite重定向或不使用斜杠

时间:2012-12-05 16:43:19

标签: .htaccess mod-rewrite

我使用mod_rewrite将请求重定向到PHP文件:

RewriteRule gallery$ mod.php?m=gallery

当我以这种格式调用网址时,一切正常:http://localhost/project/gallery但是当我调用http://localhost/project/gallery/时,我得到的页面没有错误。

我该怎么做才能解决这个问题?我应该使用/输入重复的行吗?

1 个答案:

答案 0 :(得分:2)

你的规则应该是这样的:

RewriteRule gallery/?$ mod.php?m=gallery [L,QSA,NC]