我正在学习Laravel 4.1并且无法加载任何资产。没有CSS,图像等。
File structure
-app
-bootstrap
-public
-assets
-css
-main.css
-images
-foo.jpg
index.php
-vendor
在视图中
<img src="{{asset('assets/images/foo.jpg')}}" />
也使用了HTML :: style
图片显示源代码很好,图片有,但不会加载,甚至不直接在浏览器中。所以我认为这是一个htaccess问题,但我使用的是安装中的默认问题。
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
我一直在使用wamp服务器和php服务但没有任何作用。路径是正确的,我尝试了所有路径组合。甚至无法直接在浏览器中访问php文件。
任何帮助非常适用。