apacheでindex.phpとindex.htmlの両方がある場合index.htmlを表示させたい。

最初に以下を設定。
apacheのhttpd.confファイルを設定
ディレクトリ:/etc/httpd/conf
ファイル:httpd.conf
DirectoryIndex index.html index.html.var
index.php index.phpを追加。  

しかしindex.phpが表示される。    
調べてみるとapacheのファイルよりphpのファイルが優先されるとのこと。
そこで以下を設定。    
phpファイル
ディレクトリ:/etc/httpd/conf.d
ファイル:php.conf
DirectoryIndex index.html index.php
書いてある順番に優先されるのでindex.htmlをindex.phpの前に記載  
再起動
service httpd restart  
以上。