cakephp 中第 404 页的自定义布局 3.x

Custom layout for page 404 in cakephp 3.x

我想更改 cakephp 3.x 中 404 页面的默认布局。我知道我可以从 src/Templates/Error/error400.ctp 文件更改它,但我想要的是从 css 加载我的主题来自 plugins/Theme/webroot/ 而不是来自默认的 webroot。

谁能帮我解决这个问题?

您可以使用插件语法从插件加载 css 文件。

echo $this->Html->css('DebugKit.toolbar.css');

Source > Linking to CSS Files