詳しく説明する問題ではありません。私は自分のコンセプトを明確にするだけです。
IE でしか閲覧できない Web サイトをコーディングすることはできますか?
すべてを IE の条件付きコメントに入れることができます。IE 以外のブラウザはこれをすべてコメントとして扱い、IE だけが HTML として処理します。
リダイレクトを行うか、次の場所に別のページを作成します。
<!--[if IE]>
// in here only IE will look, therefore you can isolate the other browsers from IE then redirect IE to another page, or just make this page blank and it can generate a page from withing the comment //
<![endif]-->
はい、可能です
これは条件付きコメントです