How can I redirect a 404 Error in a custom 404 page using Codeigniter?

前端 未结 9 2087
抹茶落季
抹茶落季 2020-12-03 03:22

Kind sirs, I\'m using Codeigniter to build a blog. I might need a way to redirect a 404 error into a custom 404 page. Just like what Abduzeedo.com\'s 404 page. Is it possibl

9条回答
  •  难免孤独
    2020-12-03 03:40

    For a simple solution, go to your "error_404.php" file in "application/errors/" directory and put this code at the beginning of the file:

    header("Location:".base_url());
    

    It'll redirect your 404 page to home page.

提交回复
热议问题