0

我正在使用带有 HMVC 的代码点火器,

我们正在创建插入式模块。

我有点坚持的一件事是路由。

我可以加

$route['gallery/categories'] = 'gallery/categorieseditor';
$route['gallery/categories/(:any)] = 'gallery/categorieseditor/$1';

到主要的 routes.php 配置文件,它工作正常。

但我不想编辑模块的主路由文件。

我希望我可以把它放到一个routes.php文件中/modules/gallery/config/但是访问 url 只会给我一个 404(访问/gallery/categorieseditor作品)。

我怎样才能启动并运行它?

4

1 回答 1

1

您的代码中有错误:

$route['gallery/categories/(:any)] = 'gallery/categorieseditor/$1';

应该:

$route['gallery/categories/(:any)'] = 'gallery/categorieseditor/$1';

于 2012-09-14T01:52:49.780 回答