带子域的 Codeigniter Dreamhost

发布于 2024-11-08 22:30:12 字数 989 浏览 0 评论 0原文

我在 CodeIgniter 中有一个应用程序,并将其上传到子域 Dreamhost 会引发以下错误:

遇到错误 无法加载请求的文件:sitio/inicio/index.php

我已按如下方式配置我的应用程序:

config.php

$config['base_url'] = 'http://sub.domain.com/';
$config['index_page'] ='';
$config['uri_protocol'] = 'AUTO';
$config['url_suffix'] =''; 

paths.php

$route['default_controller'] = "sitio/inicio"; 

.htaccess

RewriteEngine on
RewriteBase /home/myuser/sub.domain.com/
RewriteCond $1! ^(index\.php|public/img|public/css|public/js|public/uploads|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L] 

inicio.php

class Inicio extends CI_Controller{

    function __construct(){
        parent::__construct();
    }

    function index(){
        $this->load->view('sitio/inicio/index');
    }
}

我的默认控制器位于控制器内的子文件夹中,也是我的观点,位于视图内的子文件夹。问题是什么?我尝试了论坛中的一些解决方案,但我的问题仍然存在。

谢谢。

I have an application in CodeIgniter, and upload it to a subdomain Dreamhost throws me the following error:

An Error Was Encountered
Unable to load the requested file: sitio/inicio/index.php

I have configured my application as follows:

config.php

$config['base_url'] = 'http://sub.domain.com/';
$config['index_page'] ='';
$config['uri_protocol'] = 'AUTO';
$config['url_suffix'] =''; 

routes.php

$route['default_controller'] = "sitio/inicio"; 

.htaccess

RewriteEngine on
RewriteBase /home/myuser/sub.domain.com/
RewriteCond $1! ^(index\.php|public/img|public/css|public/js|public/uploads|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L] 

inicio.php

class Inicio extends CI_Controller{

    function __construct(){
        parent::__construct();
    }

    function index(){
        $this->load->view('sitio/inicio/index');
    }
}

My default controller is in a subfolder inside controllers, also my view, is in a subfolder inside views. What is the problem? I have tried with some solutions that are in the forum but my problem persists.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清欢 2024-11-15 22:30:12

您将默认路由指向控制器 sitio 和函数 inicio。如果您想将默认路由指向 inicio,请删除 sitio

$route['default_controller'] = "sitio/inicio";

You're pointing your default route to controller sitio and function inicio. If you want to point your default route to inicio remove sitio

$route['default_controller'] = "sitio/inicio";

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文