我将laravel 5项目从我的localhost上传到了一个实时服务器。在localhost中它可以正常工作。但在实时服务器中它无法读取任何css,javascript,图像。我将诸如css,javascript,images ..等资源添加到刀片文件中,例如:
FOR CSS,
href="{{URL::asset('front_end/stylesheet/stylesheet.css')}}"
FOR JS,
src="{{URL::asset('front_end/js/tipsy/jquery.tipsy.js')}}"
对于图像,
src="{{asset('front_end/image/pizza.jpg')}}"
在.htaccess上我用这个:
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]
无论如何,有人可以帮帮我吗?非常感谢提前!