Alright, so I tried to use .htaccess to set up ErrorDocuments for various error codes. It works great, except that now, the following jQuery AJAX code will never run the error() function:
$.ajax({url: url, type: "GET", cache: false, error: function(){
alert("Looking rather erroneous, are we?");
}, success: function(html){
// ...
}
Any proposals? I think I know the reason why: .htaccess points all errors like so:
ErrorDocument 404 /error.php
And /error.php has the following:
<?php header("Location: /#error"); ?>
So when it transfers to index.php, it probably loses the 404 document status.
What would you suggest?