Righty,
in wp-includes/canonical.php
if ( $do_redirect ) {
// protect against chained redirects
if ( !redirect_canonical($redirect_url, false) ) {
wp_redirect($redirect_url, 301);
exit();
} else {
// Debug
// die("1: $redirect_url<br />2: " . redirect_canonical( $redirect_url, false ) );
return false;
}
} else {
return $redirect_url;
}
If i comment this out i get the status:
Server Response HTTP/1.1 200 OK
However still no if-modified-since.
I also think that script is usefull (if it actually works rather then pernamently redirecting EVERY page incl the good ones).
so guessing the whole clue would be “why isn’t that script doing it’s normal job” ?
I still have to digg a bit deeper for if-modified-since tho.. not quite sure why WP doesn’t got this build in.
Regards,
Marco