我有一个简单的重写改变
http://website.com/page.php?id=1
进入
http://website.com/page/1
使用以下重写
RewriteRule ^page/(\d+)/?$ /page.php?id=$1 [L]
重写有效,它显示页面(我没有得到404),但它似乎没有从URL传递id。
为了测试这个我基本上回应了$ _GET ['id']并且没有返回任何内容。
有谁知道我为什么会出错?
非常感谢
答案 0 :(得分:7)
这很可能是因为MultiViews
启用了mod_rewrite
之前运行并重写/page to /page.php
。
在.htaccess上添加此行以禁用它:
Options -MultiViews