localhost上的Symfony资产(Wamp)

时间:2016-12-12 11:07:25

标签: css symfony vhosts

我在本地主机上运行symfony进行学习,我已将localhost文件夹std::vector配置为http:/ symfonyweb。

一切正常但风格无法加载,

<link rel="stylesheet" type="text/css" href="/assets/css/style.css">

完整网址为:http://symfonyweb/assets/css/style.css

1 个答案:

答案 0 :(得分:0)

您的资产应使用链接到asset()根目录的函数/web加载。

在您的情况下,您的资产应该像<link rel="stylesheet" type="text/css" href="{{ asset('assets/css/style.css') }}">