カスタム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,
];