[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Can I serve one resource with two distinct MIME-types?

  • From: "Manfred Staudinger" <manfred.staudinger@g...>
  • To: xml-dev@l...
  • Date: Tue, 23 Oct 2007 12:18:24 +0200

 Can I serve one resource with two distinct MIME-types?
When it comes to deliver XHTML to various browsers, it seems that the
tutorial [1], written by Dominique Hazaël-Massieux,
"Content-Negotiation Techniques to serve XHTML 1.0 as text/html and
application/xhtml+xml" (2003), still represents the state of the art.

In a small paragraph, under the heading "Can I serve one resource with
two distinct MIME-types?", he wrote:
While it's theoretically possible, I don't know any way to do it
without breaking some important aspects of HTTP (such as proxying, or
the HTTP PUT method) - that is, the method I know using RewriteRules
doesn't set headers such as ETag as it should.

Because I did not fully understand the above, I tried to implement it
(.htaccess, Apache 1.3.32):

AddType application/xml .xml
AddType application/xhtml+xml .html
AddType application/xsl+xml .xsl

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} \.html$ [NC]
RewriteCond %{HTTP:Accept} !application/xhtml\+xml [OR]
RewriteCond %{HTTP:Accept} application/xhtml\+xml\s*;\s*q=0
RewriteRule .* - [T=text/html;charset=utf-8,L]

Be aware, because of a bug [2] you can't change anything else for the
URI selected. If you do, you will lose the MIME-type you want to
insert! To prevent this, I've added the L (last) parameter.

This works for me without problems! Some advantages:
- no renames necessary, thereby preserving the search engine index
- no content-negotiation, supports both HTTP1.0 and HTTP1.1.
- no duplicate content
- easy testing on a per directory basis

Manfred

[1] http://www.w3.org/2003/01/xhtml-mimetype/content-negotiation
[2] http://issues.apache.org/bugzilla/show_bug.cgi?id=36590

--------------------------------------
Manfred Staudinger
Vienna, Austria


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]


PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.