Bootstrap无法使用Symfony

时间:2016-08-26 21:53:33

标签: twitter-bootstrap symfony

this is the code base.html.twig 这是我的代码,我把bootstrap.min.css和font-awesome.min.css 我刚刚开始使用symfony并尝试在我的页面中添加一些带有bootstrap的导航栏并且它无法正常工作,它只是一个试验,其中没有javascript

1 个答案:

答案 0 :(得分:2)

我注意到你的Apache DocumentRoot是错误的。您需要指定“web”文件夹,而不是更高级别的“Symfony”文件夹(我可以在屏幕截图中看到)。

这“可能”导致路径问题,我不确定。 使用正确的路径编辑“httpd.conf”Apache配置文件:

DocumentRoot "C:/.../Symfony/web"
...
<Directory "C:/.../Symfony/web">
...
    Options Indexes FollowSymLinks MultiViews
...
    AllowOverride All
...
</Directory>

我不确定确切的路径所以我展示C:/.../Symfony/web。 如果有问题,请告诉我。

编辑#2 根据您的屏幕截图,您需要阅读树枝中的模板和继承: http://symfony.com/doc/current/templating.html#including-stylesheets-and-javascripts-in-twig

最有可能是问题。我看到你的基础文件存在问题,太多了...