我的网址重写正在运行,但它会返回空记录集...
example.co.uk/pressnote/index?q=4
返回:example.co.uk/pressnote/index/questions/4.html
它可以工作但是doest返回我的记录集数据,例如example.co.uk/pressnote/index?q=4会返回我的数据。
my .htaccess:
RewriteEngine on
RewriteRule ^index/questions/([0-9]+?)\.html$ index.php?q=$4
答案 0 :(得分:0)
我只需将$4
更改为$1
RewriteEngine on
RewriteRule ^index/questions/([0-9]+?)\.html$ index.php?q=$1