.
The protocols send hard hardcoded, which isn't a good thing, specially on SEO.
.
For a 301 PN sends a HTTP/1.1
For a 403 & 404 PN send a HTTP/1.0
.
Since Google crawls on the 1.1 protocol, it's expecting a 1.1 protocol repsonse, on a 301 that's correct, on a 403 & 404 it's not.
.
Microsoft's msnbot crawls on the 1.0 protocol. This means that 301's are being send incorrectly.
.
The RFC is clean on the issue: Repsond with the protocol that's used in the request.
If crawler obey the RFC, PN isn't really that SEO'd :P
.
Shouldn't be to hard to correct, get the protocol used is easy:
Code
$_SERVER['SERVER_PROTOCOL']
.
Slidely off-topic: In the SEO article there's something said about the 'autolinks' module. It's not in de Core, not in the Value Addons, and not as a .8 module on the site.. Anyone who can point me too it ?
.
Edit: The dots are because whitespace isn't working when posting code-tags.. buggy forum (as in not yet fixed?)
edited by: ZarToXidE, Feb 06, 2008 - 06:04 AM
