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
Everything in application directory is not accessible via your web server you would either have to move the file to the public directory or setup a symlink to it.