Skip to content

Instantly share code, notes, and snippets.

@lukecav
Created January 28, 2016 18:38
Show Gist options
  • Select an option

  • Save lukecav/99f23855cb6282a3df88 to your computer and use it in GitHub Desktop.

Select an option

Save lukecav/99f23855cb6282a3df88 to your computer and use it in GitHub Desktop.
IE7 Redirect
<?php
$iepage = 9999999999;
if( is_page( $iepage ) ) {
if( preg_match( '/(?:\b(MS)?IE\s+|\bTrident\/7\.0;.*\s+rv:)(\d+)/', $_SERVER['HTTP_USER_AGENT'] ) ) {
header( "Location: https://www.google.com/chrome/" );
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment