Skip to content

Instantly share code, notes, and snippets.

@pjhoberman
Created January 6, 2011 18:13
Show Gist options
  • Save pjhoberman/768280 to your computer and use it in GitHub Desktop.
Save pjhoberman/768280 to your computer and use it in GitHub Desktop.
<?php
if( preg_match( '/MSIE (\d*\.\d*)/', $_SERVER['HTTP_USER_AGENT'], $matches ) ){
if( $matches[1] < 7 ) {
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.new-url.com" );
}
} // if
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment