重写引擎关闭; ErrorDocument 仍然有效吗?
我正在为 IIS7 编写一个 ISAPI 过滤器,它应该映射 Apache Mod_Rewrite 的一些功能。整个重写已经完成,我现在想要实现 ErrorDocument 指令。
当我确实关闭了 RewriteEngine 时,重写将按预期禁用。但是 ErrorDocument 怎么样?
默认的 Mod_Rewrite 行为如何?如果 RewriteEngine 关闭,ErrorDocument 指令仍然有效吗?
I'm writing an ISAPI filter for the IIS7 that should map some functionalities of the Apache Mod_Rewrite. The whole rewriting is finished and I now want to implement the ErrorDocument directive.
When I do have RewriteEngine off the rewriting is disabled as intended. But how about the ErrorDocument ?
How is the default Mod_Rewrite behaviour? Does the ErrorDocument directive still work if RewriteEngine off ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,它仍然有效。 ErrorDocument 指令是 Apache 核心的一部分,不依赖 mod_rewrite 来发挥作用。
Yes, it will still work. The ErrorDocument directive is part of Apache's core and does not rely on mod_rewrite to function.