URL重写工作但空记录集

时间:2014-07-21 08:16:20

标签: apache .htaccess

我的网址重写正在运行,但它会返回空记录集...

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

1 个答案:

答案 0 :(得分:0)

我只需将$4更改为$1

RewriteEngine on
RewriteRule ^index/questions/([0-9]+?)\.html$ index.php?q=$1