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>
lnwithout-s? What difference does that make? I think I should useRewriteBase /web/? That seems to work, but I'm not sure how it works :) – Jiew Meng Dec 5 '11 at 3:59<link href="css/styles.css". Idealy I should have something like[web root]/css/styles.css– Jiew Meng Dec 8 '11 at 10:26