gpt4 book ai didi

php - 404 Page Not Found 没有找到您请求的页面。代码点火器

转载 作者:可可西里 更新时间:2023-11-01 01:04:22 26 4
gpt4 key购买 nike

<分区>

我已经在 code igniter 上开发了一个 web 应用程序..这是我第一次使用 code-igniter ..在我的本地主机上开发了一个 web 应用程序之后.所以我决定把我的 code-igniter web 应用程序放在临时免费服务器..所以我在这个网站上上传了我的网站 1freehosting ... 然后我导入了我的数据库 .. 之后我更改了 database.php 文件中的数据库设置 .. 我还更改了 config.php 文件中的基本 url .. 因为这是我的域名 http://hello.hostingsiteforfree.com/ ...所以我将其更改为此 url ..但随后出现以下错误...我不知道出了什么问题..我搜索了很多但没有任何帮助..而且我也忘了提到我的 .htaccess 文件是空的..意味着里面没有一行

这是我遇到的错误

404 Page Not Found

The page you requested was not found.

路由.php

    <?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');

$route['default_controller'] = "loginController";
$route['404_override'] = '';


/* Location: ./application/config/routes.php */

我的 Controller

   <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

类 LoginController 扩展 CI_Controller {

 function index(){

$new['main_content'] = 'loginView';
$this->load->view('loginTemplate/template', $new);

}




function verifyUser(){

//getting parameters from view
$data = array(
'username' => $this->input->post('username'),
'password' => $this->input->post('password')
);


$this->load->model('loginModel');
$query = $this->loginModel->validate($data);


if ($query){ //if the user c validated
//data variable is created becx we want to put username in session
$data = array(
'username' => $this->input->post('username'),
'is_logged_in' => true
);

$this->session->set_userdata($data);
redirect('sessionController/dashboard_area');
}
else
{
$this->index();
}
}
function logout()
{
$this->session->sess_destroy();
$this->index();
}
}



?>

配置文件

   $config['base_url']  = 'http://hello.hostingsiteforfree.com/';
$config['index_page'] = 'index.php';

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