Home > Backend Development > PHP Tutorial > toroPHP如何设置404页面?

toroPHP如何设置404页面?

WBOY
Release: 2016-06-06 20:26:52
Original
1053 people have browsed it

各位好,我在使用toroPHP路由时遇到了一些问题。
目前toroPHP挂载的404页面为:

<code>ToroHook::add("404", function() { echo "Not found";});</code>
Copy after login
Copy after login

问题是:
1.我想自定义404页面与我本站模板一致,也就是说,我该如何操作这个函数指定到我页面模板?
2.我该如何在用户查找不到信息的时候,引导用户进入404页面?

谢谢。

toroPHP GITHUB:链接描述

回复内容:

各位好,我在使用toroPHP路由时遇到了一些问题。
目前toroPHP挂载的404页面为:

<code>ToroHook::add("404", function() { echo "Not found";});</code>
Copy after login
Copy after login

问题是:
1.我想自定义404页面与我本站模板一致,也就是说,我该如何操作这个函数指定到我页面模板?
2.我该如何在用户查找不到信息的时候,引导用户进入404页面?

谢谢。

toroPHP GITHUB:链接描述

在这个hook里面发送一个header,redirect到404这个页面就好了
header("Location: /404.html");

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template