我得到的是:
/index.php/rest/item/1
但是,它应该是:
/rest/item/1
如何将每个请求从 /index.php/rest/ 重写为 /rest/ ?
谢谢!
编辑: 它似乎只有在我将其设为重定向时才有效:
rewrite ^/index.php/rest/(.*)$ /rest/$1 permanent;
如果我使用“中断”或“最后”它 404 在我身上,知道吗?我正在使用 Gallery3,它是在 php 的 Konoha 框架上编写的。