httpd.confの修正内容(^_^;)
-----------------------------------
・httpd.conf 中のDirectory Directive 部で
 ディレクトリ public_html と secure_html に
 対して Options に +Multiviews を追加した。
(以前は Options All だけで Multiviewsが
 明示的に指定されていなかった為、有効に
 なっていなかった。)

<Directory /home/*/public_html>
Options +Multiviews All
AllowOverride All
Order allow,deny
Allow from all
</Directory>

<Directory /home/*/secure_html>
Options +Multiviews All
AllowOverride All
Order allow,deny
Allow from all
</Directory>
-------------------------
なんだけど・・・・(^_^;)