gpt4 book ai didi

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

转载 作者:搜寻专家 更新时间:2023-10-31 20:51:52 25 4
gpt4 key购买 nike

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

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

在我的 Controller 中,我使用的是 $this->load->helper('url'),它总是工作正常,并且在 View 中我尝试调用以下内容:

$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 找不到具有该文件路径的文件之外,还有什么其他问题?我错过了一些明显的东西吗?

最佳答案

我认为您正在将 .htaccess 文件与 codeigniter 一起使用,这导致您无法获取要包含的 php 文件的确切路径。使用包含包含文件的 PARENT 文件夹的名称重命名以下代码中的单词库,然后使用现有的 .htaccess 文件更新它。

RewriteEngine onRewriteCond $1 !^(index\.php|library|user_guide|robots\.txt)RewriteRule ^(.*)$ index.php/$1 [L]

关于php - 无法加载请求的文件 - CodeIgniter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6665012/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com