Slim 3 - How to add 404 Template?

前端 未结 2 1431
栀梦
栀梦 2021-02-10 02:30

In Slim 2, I can over write the default 404 page easily,

// @ref: http://help.slimframework.com/discussions/problems/4400-templatespath-doesnt-change
$app->no         


        
2条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-10 03:07

    Option 1:

    use Twig (or any other templating engine)

    Option 2:

    $notFoundPage = file_get_contents($path_to_404_html);
    $response->write($notFoundPage);
    

提交回复
热议问题