사용자 정의 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-template의 동작 방식은 유사합니다.

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,
];