We Recommend

Pro Apache Pro Apache
In addition to installation, maintenance, and deployment, the book demonstrates how to configure Apache to use Perl, PHP, and Python as server-side scripting languages. And unlike other books on Apache, Pro Apache provides comprehensive information on both major revisions - 1.3 and 2.0 - of the software.


Posted By

gbot on 06/19/08


Tagged

http header ie7 compatibility IE8 emulate


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

gbot


Add http header to force IE8 to render in IE7 mode


Published in: Apache 


In summary, IE7 compatibility support looks as follows:

IE=7

Display in IE7 Standards mode; Already supported in the IE8 Beta 1 release

IE=EmulateIE7

Display standards DOCTYPEs in IE7 Standards mode; Display quirks DOCTYPEs in Quirks mode; Available through the IE June Security Update for IE8 Beta 1

There are two ways to implement this tag:

* On a per-site basis, add a custom HTTP header 

X-UA-Compatible: IE=EmulateIE7

* On a per-page basis, add a special HTML tag to each document, right after the  tag

Implementing the HTTP header is beneficial if a site owner wants most of their site to render as it did in IE7 or if there are no plans to update site content. Inclusion of this header honors any Quirks mode pages that belong to the site.

Using the meta-tag on a per-page basis is beneficial when the publisher wants to opt-in specific pages to render as they did in IE7.

NOTE: The X-UA-Compatible tag and header override any existing DOCTYPE. Also, the mode specified by the page takes precedent over the HTTP header. For example, you could add the EmulateIE7 HTTP header to a site, and set specific pages to display in IE8 mode (by using the meta-tag with content=”IE8”).

  1. <FilesMatch "\.(html|htm|php)$">
  2. Header set X-UA-Compatible "IE=7"
  3. </FilesMatch>
  4.  
  5.  
  6. <FilesMatch "\.(html|htm|php)$">
  7. Header set X-UA-Compatible "IE=EmulateIE7"
  8. </FilesMatch>

Report this snippet 

You need to login to post a comment.