0

I am trying to put custom 404 error page ....it works fine with chrome and firefox, but with IE it is displaying its own error page.

I got to know that in IE if you uncheck "Show friendly Error Message" then it displays my custom error page.

but I can't say every user to please uncheck it...:)

In such case how to display custom error page.

Also, is there any direct solution through which this can be achieved.

there must be something i am missing, because when i open google.com/aaa then instead of "Show friendly Error Message" checked, it displays google custom error page.

Thanks

4

2 に答える 2

1

Apacheサーバーを使用している場合は、「。htaccess」ファイルを使用できます。これまでにこれを行ったことがない場合は、次の1つの簡単な方法があります。テキストエディタを開き、新しいファイルを作成して、次の行を指定します。

ErrorDocument 404 /notfound.html

次に、ファイルを「htaccess」として便利な場所に保存します(前のピリオドなし)。次に、それをルートディレクトリにアップロードし、名前を「.htaccess」に変更します(前のピリオドを追加し、ファイル拡張子は付けません)。

このディレクティブは、Apacheが必要なファイル(つまり「google.com/aaa」)を見つけることができない場合は常に、指定されたパスを介して「notfound.html」を提供するようにApacheに指示します。ルートディレクトリにも「notfound.html」を配置します(または、別のディレクトリに配置する場合は、パスを「/other-directory/notfound.html」のように変更します)。

お役に立てば幸いです。

于 2012-11-25T07:07:36.167 に答える