httpd.conf を編集
例えば、Mac OSX にインストールした XAMPP の Apache の場合は、/Applications/XAMPP/xamppfiles/etc/httpd.conf
を編集します。
トラブルシューティング
http://localhost/
にアクセスしたときに以下のようなエラーが出た場合は、DocumentRoot
に設定したディレクトリのパーミッションを確認します。
Access forbidden!
You don't have permission to access the requested directory.
There is either no index document or the directory is read-protected.
例えば、DocumentRoot として、/aaa/bbb/ccc
を設定した場合、/aaa
、/aaa/bbb
、/aaa/bbb/ccc
全てに read パーミッションがついている必要があります。
$ chmod 0755 /aaa
$ chmod 0755 /aaa/bbb
$ chmod 0755 /aaa/bbb/ccc