niwacchi.log

niwacchiのログ。

httpd.confの追記

ちょっとはまった。以下の追記を実施。
/private/etc/apache2/httpd.conf

<IfModule alias_module>
   
   (中略)

    # 追記ここから
    Alias /cake /Users/ユーザ名/Sites/cake
    <Directory "/Users/ユーザ名/Sites/cake">
       Options ALL
       AllowOverride All
       Order allow,deny
       Allow from all
    </Directory>
    # 追記ここまで

</IfModule>