本文介绍了单ErrorDocument指令捕捉所有错误(的.htaccess)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有什么样通配符指令捕捉一切可能的错误和处理他们在一个单一的自定义错误页?
Is there something like a wildcard directive to catch all possible errors and deal with them in a single custom error page?
ErrorDocument 404 /error.php?code=404
ErrorDocument 403 /error.php?code=403
...
ErrorDocument NNN /error.php?code=NNN #possible use of RegExp?
我知道我可能不会被处理了很多在这里自定义错误页,但我很好奇这个问题。
I know I probably won't be dealing with a lot of custom error pages here, but I'm curious about this.
推荐答案
这是不可能的。你需要有一个的ErrorDocument
指令对各状态code要处理不同的比默认的错误处理程序。
That is not possible. You need to have a ErrorDocument
directive for each status code you want to handle differently than with the default error handler.
这篇关于单ErrorDocument指令捕捉所有错误(的.htaccess)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!