gpt4 book ai didi

php - 使用PHP和htaccess处理错误页面

转载 作者:行者123 更新时间:2023-12-03 08:33:28 25 4
gpt4 key购买 nike

我想在我的htaccess文件中输入如下代码:

ErrorDocument 403 /error/403
ErrorDocument 404 /error/404
ErrorDocument 500 /error/500
...

并有一个PHP文件,该文件使用GET为我处理错误页面(file.php?a = 404)。

现在,我只需要htaccess代码即可将“/error/404”重写为“file.php?a = 404”。我该怎么办 ?!

最佳答案

您可能还希望自定义其他一些错误文档。
400-错误的要求
401-需要授权
403-禁止目录
404页面不存在
500内部服务器错误

对于您要使用的每个文件,只需在.htaccess文件中添加一行,然后创建相应的页面。

ErrorDocument 400 /errors/badrequest.html
ErrorDocument 401 /errors/authreqd.html
ErrorDocument 403 /errors/forbid.html
ErrorDocument 404 /errors/notfound.html
ErrorDocument 500 /errors/serverr.html

关于php - 使用PHP和htaccess处理错误页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16662355/

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