CakePHP: Redirecting all 404 errors to the homepage?

后端 未结 4 1813
遥遥无期
遥遥无期 2021-01-07 11:17

Is there a way or a function within a controller that tells if a 404 error was triggered? I would like everyone to redirect at the homepage instead of seeing a 404 page.

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-07 11:52

    The simple way is to put this in your app/Config/core.php

    Configure::write('Exception.handler', function ($error) {
        header('Location: https://www.example.com');
    });
    

    Please note that anonymous functions as callback are supported by PHP v5.3+

提交回复
热议问题