我的应用程序有 3 种与内容不同部分相关的不同布局。我想定义我的 url-s,这样他们就可以在开头的 ex 中扮演角色。“mypage.com/part1/controller/...”。我不知道如何改变路线以使这成为可能。
PS我不想要普通的前缀路由,我的控制器操作的名称会改变。
阅读以下网址
对于 CakePHP 2.x http://book.cakephp.org/2.0/en/development/routing.html#prefix-routing
对于 CakePHP 1.x http://bakery.cakephp.org/articles/Frank/2009/11/02/cakephp-s-routing-explained
或者
Configure::write('Routing.prefixes', array('admin', 'manager'));
$this->connect("/{$prefix}/:plugin/:controller", array('action' => 'index', 'prefix' => $prefix, $prefix => true));
$this->connect("/{$prefix}/:plugin/:controller/:action/*", array('prefix' => $prefix, $prefix => true));
Router::connect("/{$prefix}/:controller", array('action' => 'index', 'prefix' => $prefix, $prefix => true));
Router::connect("/{$prefix}/:controller/:action/*", array('prefix' => $prefix, $prefix => true));
在 cakephp 中将多个前缀与路由集成非常容易
在 cakephp 2.x 中,您必须执行以下步骤
有关更多信息,请参阅以下链接 http://book.cakephp.org/2.0/en/development/routing.html http://miftyisbored.com/complete-tutorial-admin-routing-cakephp/