我有这个问题。在我的 CSS 代码中,我有以下内容:
.dataTables_wrapper .footer {
padding: 15px;
border-top: 1px solid #c1c1c1;
border-radius: 0 0 2px 2px;
background: url('/img/layout/content/box/actions-bg.png') #f0f1f4 repeat-x;
}
我收到此错误:
错误 404 未找到http://backoffice.example.com/products/img/layout/content/box/actions-bg.png
不知何故,cakePHP 将我的控制器“产品”的名称添加到路径中。所以,错误是因为 cakePHP 没有找到名为“img”的方法
任何想法?