我正在尝试包含一个名为includes.php
的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
路径没问题时。
尽管如此,我还是收到了错误:
An Error Was Encountered
Unable to load the requested file: includes.php
除了Code Igniter没有找到带有该文件路径的文件外,还有哪些其他问题?我错过了一些明显的东西吗?
答案 0 :(得分:3)
我认为您正在使用带有codeigniter的.htaccess文件,这会导致您在获取要包含的php文件的确切路径时遇到问题。 使用包含包含文件的PARENT文件夹的名称重命名下面代码中的单词库,然后使用现有的.htaccess文件更新它。
RewriteEngine on RewriteCond $1 !^(index\.php|library|user_guide|robots\.txt) RewriteRule ^(.*)$ index.php/$1 [L]