我目前在PHP中使用MVC URL标准创建自己的自定义MVC框架:example.com/{controller} / {action} / {id}
这很好,但是,我的一个控制器称为" books"不需要URL中的操作:example.com/{controller} / {id}
如何解析URL路由中的索引到php mvc中的id?
示例:localhost / books / 1而不是localhost / books / index / 1
但我仍想访问网址localhost / games / puzzle / 1