cakephp 主题未在实时服务器上加载

cakephp theme not loading on live server

网站urlhttp://mathsmitra.in/

主题目录位置

app\View\Themed\Default

appcontroller.php

public $view   = 'Themed';
public $theme = 'Default';

cakephp 版本 2.4.6

img、css 和 js 没有加载到我的网站和网站在本地服务器上完美运行。 如何解决。

我检查了控制台有 404 错误消息...您必须调整权限。

当我开始用

代替时

这个

<link rel="stylesheet" type="text/css" href="/theme/Default/css/font-awesome.min.css">

有了这个

<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">

按需工作...这样您就可以使其工作或设置适当的权限

如果这不起作用,请尝试将 css 文件放入 webroot/css/ 目录并从页面调用:

echo $this->Html->css('yourcssfilename_withoutdotcss');