. Htaccess 403 Yasak / Zend Framework quickstart proje oluşturma (Mac OS X 10.6.5) atar

0 Cevap php

Ben Zend Framework quickstart öğretici yukarı ve çalışan almak için çalışıyorum, ama. Htaccess sorunu içine koştu. Bu i. Htaccess dosyasını kaldırırsanız, proje iyi çalışır gibi görünüyor, ama ben orada bırakırsanız o bir 403 Yasak atar. . Htaccess Zend Framework konsol komutu tarafından oluşturulan varsayılan dosya olduğunu. . İşte htaccess olduğunu:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

Bu Mac OS X 10.6.5 altında

mod_rewrite is on AllowOveride All

İşte benim sanal konak info

<VirtualHost *:80>
     ServerName zf_cms.local
     DocumentRoot /Users/kjye/Sites/zf_cms/public
     SetEnv APPLICATION_ENV "development"
     <Directory /Users/kjye/Sites/zf_cms/public>
          Options +Indexes +FollowSymLinks +ExecCGI
          DirectoryIndex index.php
          AllowOverride All
          Order allow,deny
          Allow from all
     </Directory>
</VirtualHost>

Ben görüntüleme için "Options + Indexes + + FollowSymLinks ExecCGI" Teşekkür ekleyerek düzelttim.

0 Cevap