1

我有网址,例如

http://localhost/test/web/app_dev.php/

http://localhost/test/web/app_dev.php/profile/change-password

http://localhost/test/web/app_dev.php/member/form/test

我想获得这些网址的绝对路径

我经常使用图像或资产的绝对路径,例如

{{ asset('bundles/acmedemo/images/title_contact.gif') }}

但这些 URL 不在某个捆绑目录下。我应该使用什么方式为这些 URL 创建绝对路径?

4

2 回答 2

3

这种 url 可以使用{{ path() }}.

例如:

<a href="{{ path('profile-change-password') }}">
  Change password
</a>

http://symfony.com/doc/current/book/routing.html#generating-urls-from-a-template

于 2013-06-10T18:19:41.273 回答
0

如果您需要绝对路径,那么...

{{ url() }}

例如:

<a href="{{ url('my_home_route') }}">
  Home
</a>
于 2014-03-05T08:48:12.860 回答