カスタム404ページ

webmanは404の際にpublic/404.htmlの内容を自動的に返しますので、開発者はpublic/404.htmlファイルを直接変更することができます。

404の内容を動的にコントロールしたい場合、例えばajaxリクエストでjsonデータ {"code:"404", "msg":"404 not found"} を返し、ページリクエスト時にはapp/view/404.htmlテンプレートを返したい場合は、以下の例を参照してください。

以下の例はPHPのネイティブテンプレートを使用していますが、他のテンプレートtwig blade think-tmplateも同様の原理です。

app/view/404.htmlファイルを作成

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>404 not found</title>
</head>
<body>
<?=htmlspecialchars($error)?>
</body>
</html>

config/route.phpに以下のコードを追加:

use support\Request;
use Webman\Route;

Route::fallback(function(Request $request){
    // ajaxリクエスト時にjsonを返す
    if ($request->expectsJson()) {
        return json(['code' => 404, 'msg' => '404 not found']);
    }
    // ページリクエスト時には404.htmlテンプレートを返す
    return view('404', ['error' => 'some error'])->withStatus(404);
});

カスタム500ページ

app/view/500.htmlを新規作成

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>500 Internal Server Error</title>
</head>
<body>
カスタムエラーテンプレート:
<?=htmlspecialchars($exception)?>
</body>
</html>

app/exception/Handler.phpを新規作成 (ディレクトリが存在しない場合は作成してください)

<?php

namespace app\exception;

use Throwable;
use Webman\Http\Request;
use Webman\Http\Response;

class Handler extends \support\exception\Handler
{
    /**
     * レンダリングと返信
     * @param Request $request
     * @param Throwable $exception
     * @return Response
     */
    public function render(Request $request, Throwable $exception) : Response
    {
        $code = $exception->getCode();
        // ajaxリクエスト時にはjsonデータを返す
        if ($request->expectsJson()) {
            return json(['code' => $code ? $code : 500, 'msg' => $exception->getMessage()]);
        }
        // ページリクエスト時には500.htmlテンプレートを返す
        return view('500', ['exception' => $exception], '')->withStatus(500);
    }
}

config/exception.phpを構成

return [
    '' => \app\exception\Handler::class,
];