Apache2.4にしたらCakePHP2.7のTOPページ以外がNOT FOUNDになったので対応しました。
Apache2.4でドはまりしました。
Forbidden
You don't have permission to access /t...
↑前回この修正をしたのですが不足がありました。
原因はやはりApacheの設定でした。
1 2 3 4 5 6 7 8 9 10 11 12 |
<VirtualHost *:80> ServerName test.local DocumentRoot /home/hase_done/src/test/app/webroot ErrorLog /home/hase_done/logs/eroor_log CustomLog /home/hase_done/logs/access_log combined <Directory /home/hase_done/src/test/app/webroot> Options FollowSymlinks Includes AllowOverride All Require all granted </Directory> </VirtualHost> |
AllowOverride Allがないとcakeプロジェクト内の.htaccessが効かない為のようです。
このサンプルが最終形になる事を願って続けます。