11-10-2008, 07:16 PM
[eluser]jigen7[/eluser]
Hi can anyone help me to my problem my site is working fine yesterday and when i visited it today it gives me the error "404 Page Not Found The page you requested was not found.", and im sure i didnt change a single code yesterday also another of my site that is using codeginiter gives me the same error, i tried changing the , what do you think is the problem here's the my url http://jigenki.com/jigspsp, this is the controller that will be loaded
Hi can anyone help me to my problem my site is working fine yesterday and when i visited it today it gives me the error "404 Page Not Found The page you requested was not found.", and im sure i didnt change a single code yesterday also another of my site that is using codeginiter gives me the same error, i tried changing the , what do you think is the problem here's the my url http://jigenki.com/jigspsp, this is the controller that will be loaded
Code:
$route['default_controller'] = 'user';
Code:
class User extends Controller
{
function User()
{
parent::Controller();
$this->load->helper('url');
$this->load->helper('form');
$this->load->helper('file');
$this->load->library('session');
$this->load->model('base_model');
}
function index()
{
//redirect('user/login');
header("Location: http://jigenki.com/pspblog", TRUE, 302);
}