将codeigniter项目从localhost移动到cpanel

问题描述 投票:0回答:2

我试图在服务器上运行我的codeigniter网站。但我不知道我应该执行什么设置。

我发现以下link移动文件并执行指定的设置,但仍然没有显示我的网站的主页。

这是我到目前为止所做的。

我将codeigniter网站的application and system文件夹移动到根目录,而我的.htaccess文件以及我的assetsindex.php在public_html中。

这是我的目录结构。

-/home/mysite
    -public_html
        -index.php        <-- the path for system is set to '/home/mysite/system' and for application folder is '/home/mysite/application'
        -.htaccess
    -system
    -application

我已经执行了链接中提到的以下设置。

$config['index_page'] = "";
$config['base_url'] = "http://myurl.com/";
$config['server_root'] = $_SERVER['DOCUMENT_ROOT'];
$config['uri_protocol'] = 'AUTO';

$route['default_controller'] = "home_controller";

这是我的.htaccess文件。

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

现在我不知道为什么当我输入网站的网址时,我的主页仍然没有出现。

codeigniter cpanel
2个回答
0
投票

在public_html文件夹中上传您的应用程序文件夹,系统文件夹,assets文件夹,index.php,.HTACCESS


0
投票

你需要做几个步骤:

  • 更新base_url的'application / config / config.php'
  • 更新RewriteBase的'htaccess'文件(如果需要)
  • 更新文件权限(如果需要)
  • 更新'application / config / database.php'以获取qazxsw poi设置
  • 如果你还面临问题,那么你需要调试如下:
  • 在索引控制器中打印一些内容并沿着调用的函数序列遍历,然后查看。
© www.soinside.com 2019 - 2024. All rights reserved.