每一个人,我在codeigniter中创建了一个站点,并且它在本地服务器上工作正常。我上传了直播服务器:域名(http://fantastictravels.co/),上面写着“找不到这个fantastictravels.co页面”
我尝试了很多不同的东西,但它不起作用。这是我的视图和控制器代码:
控制器:
<?php
class Travels extends CI_Controller {
function __construct(){
parent :: __construct();
$this->load->model('travel');
}
public function index()
{
$this->load->view('index');
}
}
查看:
<head>
<meta http-equiv="Content-Language" content="en-us">
<title></title>
<meta charset="utf-8">
</head>
<body>
<div class="content">
This is test
</div>
</body>
</html>
在我的配置文件中,base_url为“http://fantastictravels.co/”,我的所有文件都位于“http://fantastictravels.co/”的根目录下。 请帮帮我。
答案 0 :(得分:0)
1,你有一个名为index.php的查看文件吗? 您的视图文件是否在视图文件夹中?
将其放入.htaccess文件
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php| (.*)\.swf|forums|images|css|downloads|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php?$1 [L,QSA]
转到配置文件,确保此行看起来像这样
$config['index_page'] = '';
答案 1 :(得分:0)
我的控制器和模型文件名是小写字母,我改成大写,它变得固定......:)