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 ?
views:
83answers:
1
+1
A:
Yes, it will still work. The ErrorDocument directive is part of Apache's core and does not rely on mod_rewrite to function.
Cryo
2010-02-12 08:48:23
Thank you. All I wanted to know.
Simon Linder
2010-02-12 08:49:22