codeigniter 3.0 custom 404 not found error page

后端 未结 4 816
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-05 11:53

My problem is about custom error pages after upgrading to Codeigniter 3.0.

I used to have a Errors controller which handled 404 error page of the websi

4条回答
  •  误落风尘
    2021-01-05 11:59

    In Codeigniter 3, instead of calling show_404(), I just redirected to the custom error controller function.

    e.g. for the above scenario

    if (404 condition...) {
        redirect("my404");
    }
    

提交回复
热议问题