Hi!
I have a big problem with ZF. I have a IndexController with a IndexAction and a TestAction. My Layout it done with (bootstrap file):
PHP Code:
$options = array(
'layout'=>'layout',
'layoutContent'=>'../application/views/scripts',
'contentKey'=>'content');
Zend_Layout::startMvc($options);
In my menu I have a link to the TestAction in my IndexController: <a href="index/test"> which will call the Action correctly but then its messing up the directory and giving me a page without stylesheet and graphics (bc it changed into the sub directory index, which doesnt even exist)
Can anyone tell me what I am doing wrong?
Screenshot