Symfony无法加载css文件

时间:2015-10-18 20:15:50

标签: php symfony twig

我在加载我的css和js文件时遇到问题。

Css和js在app / Resources / views / css和app / Resources / views / js文件夹中

这是我的app / Resources / views / base.html.twig

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8" />
        <title>{% block title %}Welcome!{% endblock %}</title>
        <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
        <link rel="stylesheet" type="text/css" href="../app/Resources/views/css/bootstrap.min.css" />
        <link rel="stylesheet" type="text/css" href="../app/Resources/views/css/bootstrap-theme.min.css" />
    </head>
    <body>
        {% block body %}{% endblock %}
        <!-- this also doesnt work ofcourse -->
        <script src="../app/Resources/views//js/jquery-2.1.4.min.js"></script>
        <script src="../app/Resources/views//js/bootstrap.min.js"></script>
    </body>
</html>

无法找到我的档案。

我该如何解决这个问题?

谢谢!

1 个答案:

答案 0 :(得分:1)

您的“app”文件夹位于webroot之外,无法访问。改为将文件放在“web”文件夹中!