How to detect and display a page only for IE?

Try using this code to check if it’s IE (original source)…

<?php
    if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false))
        return true;
    else
        return false;
?>

You’ll have to hook it up with an action and redirect accordingly.