我生成的网站备份有symfony2 CMS
当我在我的本地主机上提取它时工作正常,但(css / js / images)无法正常工作
就像捆绑包需要再次重建一样吗?
我正在使用Mac os终端编写symfony2命令
css标签
{% block stylesheets %}
{{ parent() }}
<link rel="stylesheet" href="{{asset('bundles/cmsfront/css/default.css')}}" type="text/css" />
{% if app.request.attributes.get('_locale') == 'ar' %}
<link rel="stylesheet" href="{{asset('bundles/cmsfront/css/rtl.css')}}" type="text/css" />
{% endif %}
{% endblock %}
运行完美的在线网站,我需要将此网站移动到另一台服务器,所以我只想在我的localhost上进行测试,我得到了CSS和图像等的错误
403
Forbidden
You don't have permission to access /myweb/web/bundles/cmsfront/js/slider.js on this server.
任何建议?
答案 0 :(得分:0)
在我的情况下,终端中的chmod 775帮助了我
答案 1 :(得分:0)
我得到了同样的错误。 我也在使用Mac OS。
我只需用sudo apachectl restart
重新启动apache2即可。