treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Force Correct content-type for XHTML Documents

Last updated on:

Most webservers serve XHTML content as text/html what is definitly the right way to handle XHTML documents. In case the server isn't doing that correctly, you can force it on Apache servers with .htaccess:

RewriteEngine On
RewriteCond %{HTTP_ACCEPT} application/xhtml\+xml
RewriteCond %{HTTP_ACCEPT} !application/xhtml\+xml\s*;\s*q=0
RewriteCond %{REQUEST_URI} \.html$
RewriteCond %{THE_REQUEST} HTTP/1\.1
RewriteRule .* - "[T=application/xhtml+xml; charset=ISO-8859-1]"

Reference URL

View Comments

Comments

  1. Hendrik
    Permalink to comment#

    Is there any reason to use iso-8859-1 instead of utf8? iso-8859-1 can neither use the € symbol nor popular european characters like üäöé …

  2. Permalink to comment#

    Or spanish characters as ñ!

Leave a Comment

Use markdown or basic HTML and be nice.