Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 CakePHP 的新手。我在我的 Cake 应用程序中添加了一个插件,它的名称是“Admin”。现在它工作正常,当我使用“localhost/admin/...”访问它时。我的问题是,我想对用户隐藏 /admin,例如,我想使用“localhost/console/...”来替换默认路由配置。我google了很多,没有得到答案。那么如何更改 CakePHP 中插件的默认路由配置呢?
谢谢。
如果您希望它适用于所有插件控制器/操作,则需要更详细一点。尝试:
Router::connect('/console/:controller/:action/*', array('plugin'=>'admin'));
但如果这就是你想要的,你最好将“Admin”插件重命名为“Console”。重新路由所有插件控制器和操作将使调试变得不那么有趣。:)