我有一个插件需要覆盖 / 的默认路由
我尝试过的文件位于 APP/Plugin/Install/Config/routes.php
<?php
Router::connect('/', array('plugin' => 'install', 'controller' => 'installer', 'action' => 'index'));
哪个不起作用。我还在我的引导程序中加载所有插件。CakePlugin::loadAll();
我错过了什么吗?
[更新。该文件需要覆盖 APP/Config/routes.php 中的主要 routes.php 文件。显然更新主路由文件有效并显示正确的页面,但我试图覆盖这个文件而不是直接修改它。]