How do I override the not found page in CodeIgniter?

前端 未结 3 1296
余生分开走
余生分开走 2021-01-26 18:29

I have a CodeIgniter application that\'s generally working how I\'d like it to, but occasionally a user will go to a page that does not exist and is greeted with an unfriendly e

3条回答
  •  青春惊慌失措
    2021-01-26 19:14

    Try these codeigniter functions

    show_404('Your error message');
    show_error('Your error message');
    

    you can find more detail at http://codeigniter.com/user_guide/general/errors.html

    example:

    if ($some_error) //condition
    {
     show_error('Error');
    }
    

提交回复
热议问题