I'm trying to add a css file in my zend application layout.php the problem is it resides in
/application/media/css/style.css
when i do
<?php echo $this->headLink()->appendStylesheet('/media/css/style.css') ?>
it generates the path like
appname/public/media/css/style.css
where as i need to generate the path like
appname/application/media/css/style.css
how can i tell zend to look for the css file at a apecific location in layout.php