i have a index route:
/**
* @Route("/", name="index")
* @Template()
*/
It renders a twig template, which includes some css files like this:
<link rel="stylesheet" href="{{ 'bundles/public/css/bootstrap.min.css' }}" />
When i access the site like this:
app_dev.php
All is well, but when i redirect, or do
app_dev.php/
The css is not applied, and the files included are empty, its quite weird.
What could be the issue?