3

我正在尝试包含一个名为的 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 找不到具有该文件路径的文件之外,还有哪些其他问题?我错过了什么明显的东西吗?

4

1 回答 1

3

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

重写引擎开启
RewriteCond $1 !^(index\.php|library|user_guide|robots\.txt)
重写规则 ^(.*)$ index.php/$1 [L]
于 2011-07-12T15:20:02.463 回答