php-无法加载请求的文件-CodeIgniter

我正在尝试包含一个名为include.php的PHP文件,该文件不包含在普通的Views文件夹中.该文件包含指向要与此特定主题一起加载的JS文件的链接. includes.php驻留在scripts文件夹中:

| assets |
         | themes
                  | theme_name
                               | css
                               | img
                               | scripts
| application
| system

在我的控制器中,我使用了始终可以正常运行的$this-> load-> helper(‘url’),在View中,我试图调用以下命令:

$includes_url = asset_url() . 'themes/' . $theme . '/scripts/includes.php';
$this->load->file($includes_url);

URL似乎正确,因为当我回显$includes_url时,路径很好.

尽管如此,我得到了错误:

An Error Was Encountered
Unable to load the requested file: includes.php

除了Code Igniter找不到具有该文件路径的文件之外,还有什么其他问题?我错过了明显的事情吗?

解决方法:

我认为您正在使用带有Codeigniter的.htaccess文件,这导致您在获取要包含的php文件的确切路径时遇到问题.
使用包含文件的PARENT文件夹的名称重命名以下代码中的单词库,然后使用现有的.htaccess文件进行更新.

RewriteEngine on
RewriteCond $1 !^(index\.php|library|user_guide|robots\.txt)
RewriteRule ^(.*)$index.php/$1 [L]
上一篇:PHP-无法在Codeigniter中加载CSS


下一篇:php-如何在codeigniter中对多个文本字段使用相同的回调函数