Conditional Redirect

If you want to detect only IE specific browsers, then following code help you. You need to replace the comments with the redirection code

function browser_detection_redirect(){
preg_match('/MSIE (.*?);/', $_SERVER['HTTP_USER_AGENT'], $matches);

if (count($matches)>1){
  //Then we're using IE
  $version = $matches[1];

  switch(true){
    case ($version<=8):
      //IE 8 or under!
      break;

    case ($version==9):
      //IE9!
      break;

    default:
      //You get the idea
  }
}
}

You have to call the function on WordPress init hook to redirect:

add_action('init', 'browser_detection_redirect');

To add this code on the specific page you need to use the is_page WordPress function.