Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a symlink from /var/www/web/ to /projects/Symfony/web/. When trying to access my site with app_dev.php (ie. http://localhost/web/app_dev.php), CSS is linked wrongly (...web/app_dev.php/css/styles.css). BUt when accessing app.php (non development mode), its OK. So how can I fix this?

htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ app.php [QSA,L]
</IfModule>
share|improve this question
Can't you use a hard link? – Gerben Dec 4 '11 at 19:10
1  
@Gerben, what u mean by hardlink? isit ln without -s? What difference does that make? I think I should use RewriteBase /web/? That seems to work, but I'm not sure how it works :) – Jiew Meng Dec 5 '11 at 3:59
how do you include your css files? – Jakub Zalas Dec 5 '11 at 16:54
@kuba, just a simple <link href="css/styles.css". Idealy I should have something like [web root]/css/styles.css – Jiew Meng Dec 8 '11 at 10:26

1 Answer

up vote 2 down vote accepted

Try to include your stylesheets using asset() twig function:

<link href="{{ asset('/css/styles.css') }}" type="text/css" rel="stylesheet" />

It should take care of creating proper links.

If you use PHP templates try:

<link href="<?php echo $view['assets']->getUrl('css/styles.css') ?>" rel="stylesheet" type="text/css" />

Read more about assets in Including Stylesheets and Javascripts in Twig and about PHP templates in How to use PHP instead of Twig for Templates.

share|improve this answer
If I use PHP, is there a similar method? – Jiew Meng Dec 8 '11 at 14:02
Yes, read the docs please. I updated my answer. – Jakub Zalas Dec 8 '11 at 14:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.