gpt4 book ai didi

perl - Mojolicious lite 如何将未找到和服务器错误页面重定向到用户定义的错误页面

转载 作者:行者123 更新时间:2023-12-04 13:17:04 24 4
gpt4 key购买 nike

如何将未找到的用户定义错误页面和服务器错误页面重定向到用户定义页面 Mojolicious lite

最佳答案

您可以为名为 exception.html.ep 的自定义页面添加模板。或 not_found.html.ep在你的 liteapp 结束时。

例如:

use Mojolicious::Lite;
get '/' => sub {
my $self = shift;
$self->render(text => "Hello.");
};
app->start;

__DATA__
@@ not_found.html.ep
<!DOCTYPE html>
<html>
<head><title>Page not found</title></head>
<body>Page not found <%= $status %></body>
</html>

如需引用,请参阅 Mojolicious rendering guide .

The renderer will always try to find exception.$mode.$format.* or not_found.$mode.$format.* before falling back to the built-in default templates.

关于perl - Mojolicious lite 如何将未找到和服务器错误页面重定向到用户定义的错误页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13272220/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com