【发布时间】:2013-05-22 11:44:56
【问题描述】:
我已经使用前缀“webadmin”建立了我的 cakephp 站点的管理员。现在我需要将其更改为“aRRT6nnf”之类的内容。
我更改了 core.php、routes.php 中的管理员前缀,甚至更改了 views 文件夹中的文件名,但这会出现以下错误:
Error: The requested address '/aRRT6nnf' was not found on this server.
我进行了以下更改以实现此目的:
//core.php
Configure::write('Routing.prefixes', array('aRRT6nnf'));
//routes.php
Router::connect('/aRRT6nnf', array('controller' => 'dashboard', 'action' => 'index', 'prefix'=>'aRRT6nnf', 'aRRT6nnf'=>true));
任何帮助将不胜感激。
【问题讨论】: