Core.php in cakephp 3

只愿长相守 提交于 2019-12-11 05:56:25

问题


I used to do some config with "routing.prefix" in cakephp2. It was in the file core.php. I notice there is no core.php in Cakephp 3. What is the equivalent of core.php in cake 3.


回答1:


the core configuration file for cake3 is config/app.php

http://book.cakephp.org/3.0/en/development/configuration.html

but the routes go in the config/routes.php file

http://book.cakephp.org/3.0/en/development/routing.html

so If you want to have a named routing put it in routes.php

http://book.cakephp.org/3.0/en/development/routing.html#using-named-routes




回答2:


that would be the Config/app.php



来源:https://stackoverflow.com/questions/38584512/core-php-in-cakephp-3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!