我正在尝试为Web项目构建API。 文件夹结构如下:
/api
-/v1
- .htaccess
-/question
-all.php
现在,我正在尝试为以下情况构建URL重写。 我想输入这个URL: http://localhost/api/v1/question/all/2003
然后转到 http://localhost/api/v1/question/all.php?questionid=2003
我建立了此重写规则,但仅收到404错误。
RewriteEngine on
RewriteRule ^all/([0-9]+) all.php?questionid=$1 [NC, L]
有人可以告诉我这个RewriteRule是否正确吗?或告诉我正确的方法。