少しのJavaScriptでこれを処理する必要があります。
JavaScriptnavigator
オブジェクトの簡単なデモを次に示します。
<script type="text/javascript">
txt = "<p>Browser CodeName: " + navigator.appCodeName + "</p>";
txt+= "<p>Browser Name: " + navigator.appName + "</p>";
txt+= "<p>Browser Version: " + navigator.appVersion + "</p>";
txt+= "<p>Cookies Enabled: " + navigator.cookieEnabled + "</p>";
txt+= "<p>Platform: " + navigator.platform + "</p>";
txt+= "<p>User-agent header: " + navigator.userAgent + "</p>";
document.getElementById("example").innerHTML=txt;
</script>
これは文字通り W3Schools から直接取得したものであることに注意してください (通常はお勧めしませんが、この問題では問題ありません)。
とにかく、あなたは次のようなものが欲しいでしょう:
<script type="text/javascript">
if(navigator.appName=="Internet Explorer" && navigator.appVersion == "7.0.Whatever") //maybe its "IE", I didn't actually check. Sorry lol, don't have time to test this out
{
window.location.href = "YourErrorPageFileName";
}
</script>
そのコードをログイン ページ (またはマスター ページなど) に挿入すると、準備完了です。
補足: コードがそのようにすべてばかげた形式になっている理由がわかりません。StackOverflow は、特定の条件下で奇妙にスラッシュを解析していると思います