I am testing localhost/whitespace/book24
I am having issue, while creating the links i.e. the links are generating as localhost/assests/css/
I have set url in my service.php
$config->application->baseUri = '/whitespace/book24/';
$di->set('url', function () use ($config) {
$url = new \Phalcon\Mvc\Url();
$url->setBaseUri($config->application->baseUri);
return $url;
}, true);
css links in volt file.
<link href="/assests/css/style.css">
can anyone helps ?