我将CakePHP网站从开发移至生产,现在在图像和JS文件上收到404错误。
应用位于/var/www/html
文件夹中,而蛋糕位于/var/www/cake
。
example.com/webroot/images/logo.gif工作正常,但是example.com/images/logo.gif会抛出404.
这是我的 /var/www/html/.htaccess:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
</IfModule>
非常感谢任何帮助。
谢谢!