2014-04-07 53 views
0

早上好。資產之路Symfony2.4

我在加載css和js在我的頁面有問題。

我的Apache2,php5.4.12,贏得7x64

我來源:

<link rel="stylesheet" href="{{ asset('bundles/cleverfinancemain/style/main.css') }}" /> 

如果路線本地主機/網絡/ app.php =>頁面有

<link rel="stylesheet" href="/web/web/bundles/cleverfinancemain/style/main.css" /> 

如果路線localhost/web/app_dev.php =>頁面有

<link rel="stylesheet" href="/web/bundles/cleverfinancemain/style/main.css" /> 

爲什麼?

回答

1

您應該運行php app/console assetic:dump --env=prod --no-debug生產環境來生成資產文件。

此外,請考慮使用web/文件夾作爲DocumentRoot。在這種情況下,您的應用程序將是localhost/app.php(這應該是這樣)

+1

太棒了!我將Web /文件夾設置爲DocumentRoot。非常感謝你! – TyM6JIep

0

刪除緩存並檢查一次。