CodeIgniter Forums
[HELP]Suddenly!! 404 Page Not Found The page you requested was not found. - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: [HELP]Suddenly!! 404 Page Not Found The page you requested was not found. (/showthread.php?tid=13089)



[HELP]Suddenly!! 404 Page Not Found The page you requested was not found. - El Forum - 11-10-2008

[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


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);

    }