CakePHP 找不到 webroot/css/js 个文件

CakePHP can not find webroot/css/js files

我只是通过 svn controle 版本将 CakePHP 2.5.2 应用程序下载到测试服务器。

数据库配置后,应用程序不会打开位于 app/webroot 目录(bootstrap、jquery、main.css)的 css 个文件。

是一些附加的配置参数吗?

我尝试更改所有者但没有成功。

看起来像 mod_rewrite 问题。

确保您的 DocumentRoot 中有 .htaccess,并且您的 Apache 服务器配置正确。

CookBook 中详细描述了所有内容。

CakePHP 2.x URL Rewriting


编辑:如评论中所述,OP 通过将 apache vhost 配置文件 (/etc/apache2/sites-available/default.conf) 中的 Directory 定义替换为以下内容解决了这个问题:

<Directory /var/www/> 
    Options Indexes FollowSymLinks MultiViews 
    AllowOverride FileInfo 
    Order Allow,Deny
    Allow from all 
</Directory>