我使用mod_rewrite将请求重定向到PHP文件:
RewriteRule gallery$ mod.php?m=gallery
当我以这种格式调用网址时,一切正常:http://localhost/project/gallery
但是当我调用http://localhost/project/gallery/
时,我得到的页面没有错误。
我该怎么做才能解决这个问题?我应该使用/
输入重复的行吗?
答案 0 :(得分:2)
你的规则应该是这样的:
RewriteRule gallery/?$ mod.php?m=gallery [L,QSA,NC]