我做了什么
我在位于
的index.ctp$this->Html->css('default')
中编写了此代码
/ Views / Themed / {THEME NAME} /layout/index.ctp
代码尝试访问位于
的default.css/ Views / Themed / {THEME NAME} /webroot/css/default.css
发生了什么
当呈现页面index.ctp时,$this->Html->css('default')
的翻译是
/cakePHP/css/default.css
我期望发生什么
但必须是
/ cakePHP / theme / {THEME NAME} /css/default.css
上述问题发生在LAMP
中答案 0 :(得分:1)
// controller
public $theme = 'theme_name';
//action
$this->theme = 'theme_name';