CentOS Apache 2 Test Pageを非表示にする
Apache 2 Test Pageを非表示にする
Apache 2 Test Pageとはこれ!
これは404など、サーバーにファイルが無い場合などこの画面が出ます。
まあ自分で404ページを.htaccessなりApacheなりで設定すればいいだけの話なのですが、ただの
Forbidden
でええじゃないか!ということで。
Apache 2 Test Pageのあのファイルの場所
Apache 2 Test Pageのファイルはここにあるそうです。
/error/noindex.html
このファイルを削除してもよいそうですが、ちょっとApacheのデフォルトページを削除するのも気がひけるので、このページを表示させないようにだけ設定します。
vi /etc/httpd/conf.d/welcome.conf
# This configuration file enables the default "Welcome" # page if there is no default index page present for # the root URL. To disable the Welcome page, comment # out all the lines below. #以下をコメントアウトするだけ #<LocationMatch "^/+$"> # Options -Indexes # ErrorDocument 403 /error/noindex.html #</LocationMatch>
後はApacheを再起動すればOKです。
Apache再起動で設定反映
/etc/rc.d/init.d/httpd restart