我试图在服务器上运行我的codeigniter网站。但我不知道我应该执行什么设置。
我发现以下link移动文件并执行指定的设置,但仍然没有显示我的网站的主页。
这是我到目前为止所做的。
我将codeigniter网站的application and system
文件夹移动到根目录,而我的.htaccess
文件以及我的assets
和index.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]
现在我不知道为什么当我输入网站的网址时,我的主页仍然没有出现。
在public_html文件夹中上传您的应用程序文件夹,系统文件夹,assets文件夹,index.php,.HTACCESS
你需要做几个步骤:
base_url
的'application / config / config.php'RewriteBase
的'htaccess'文件(如果需要)