我正在尝试包含一个名为的 PHP 文件includes.php
,该文件不包含在普通的 Views 文件夹中。该文件包含指向要使用此特定主题加载的 JS 文件的链接。includes.php
位于scripts
文件夹中:
| assets |
| themes
| theme_name
| css
| img
| scripts
| application
| system
在我使用的控制器中$this->load->helper('url')
,它总是可以正常工作,并且在视图中我试图调用以下内容:
$includes_url = asset_url() . 'themes/' . $theme . '/scripts/includes.php';
$this->load->file($includes_url);
当我回$includes_url
显路径时,URL 似乎是正确的。
尽管如此,我还是得到了错误:
An Error Was Encountered
Unable to load the requested file: includes.php
除了 Code Igniter 找不到具有该文件路径的文件之外,还有哪些其他问题?我错过了什么明显的东西吗?