vote up 3 vote down star

Hi Stackers

I started some of my new web pages (xhtml 1.1) to do a regex of the request header 'Accept' and sending it the right XHTML headers if accepted XML (Firefox does, So does safari).

IE (or any other browser that doesn't accept it) will just get the plain text/html headers.

Will Google bot (or any other search bot) have any problems with this? Is there any negatives to my approach I have looked over? Would you think this header sniffer would have much effect on performance?

flag

4 Answers

vote up 2 vote down check

I use content negotiation to switch between application/xhtml+xml and text/html just like you describe, without noticing any problems with search bots. Strictly though, you should take into account the q values in the accept header that indicates the preference of the user agent to each content type. If a user agent prefers to accept text/html but will accept application/xhtml+xml as an alternate, then for greatest safety you should have the page served as text/html.

link|flag
vote up 2 vote down

The only real problem is that browsers will display xml parse errors if your page contains invalid code, while in text/html they will at least display something viewable.

There is not really any benefit of sending xml unless you want to embed svg or are doing xml processing of the page.

link|flag
vote up 2 vote down

One problem with content negotiation (and with serving different content/headers to different user-agents) is proxy servers. Considering the following; I ran into this back in the Netscape 4 days and have been shy of server side sniffing ever since.

User A downloads your page with Firefox, and gets a XHTML/XML Content-Type. The user's ISP has a proxy server between the user and your site, so this page is now cached.

User B, same ISP, requests your page using Internet Explorer. The request hits the proxy first, the proxy says "hey, I have that page, here it is; as application/xhtml+xml". User B is prompted to download the file (as IE will download anything sent as application/xhtml+xml.

You can get around this particular issue by using the Vary Header, as described in this 456 Berea Street article. I also assume that proxy servers have gotten a bit smarter about auto detecting these things.

Here's where the CF that is HTML/XHTML starts to creep in. When you use content negotiation to serve application/xhtml+xml to one set of user-agents, and text/html to another set of user agents, you're relying on all the proxies between your server and your users to be well behaved.

Even if all the proxy servers in the world were smart enough to recognize the Vary header (they aren't) you still have to contend with the computer janitors of the world. There are a lot of smart, talented, and dedicated IT professionals in the world. There are more not so smart people who spend their days double clicking installer applications and thinking "The Internet" is that blue E in their menu. A mis-configured proxy could still improperly cache pages and headers, leaving you out of luck.

link|flag
Interesting Alan. I shall consider this. Maybe I'll just send 'em tag soup. – alex Dec 9 '08 at 13:47
vote up 1 vote down

The problem is that you need to limit your markup to subset of both HTML and XHTML.

  • You can't use XHTML features, because they will break in HTML.
  • You can't use HTML's efficient syntax, because it won't parse as XML.
  • You can't use XML serializer, because it will break text/html mode.
  • It's risky to use use HTML tools, because they don't care about well-formedness (if XML breaks, only part of your audience will complain, likely blaming you for writing IE-only website!)

I've tested my XML-only website recently. It was indexed even though I've used application/xml MIME type, but it appeared to be parsed as HTML anyway (Google did not index text that was in <[CDATA[ ]]> sections).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.