设置Zend Framework htaccess文件

时间:2013-02-01 16:15:20

标签: .htaccess zend-framework

这是我的项目目录:

/webroot
/myproject
    index.php
    /application
    /config
    /library
    /public
        /css
        /img
        /js
        index.php
        .htaccess

这是我在/myproject/index.php中的代码

<?php include 'public/index.php';

.htaccess文件中的代码:

#SetEnv APPLICATION_ENV development

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
RewriteRule !\.(js|ico|gif|jpg|png|css|swf|html|pps)$ index.php [NC,L]

order allow,deny
allow from all

问题是我无法从css,img,js目录加载css,img或js文件。

The requested URL /css/style.css was not found on this server.

1 个答案:

答案 0 :(得分:0)

这不是一个htaccess问题。您的DOCUMENT_ROOT应该指向您的公共文件夹,但它看起来像是当前指向您的myproject文件夹(这是一个很大的安全漏洞)。您可能会发现/myproject/css/style.css可以正常工作。您应该更新虚拟主机设置以解决此问题。