I am using modular structure in Zend and having separate layout, router, configuration in every module folder.
in my module/admin/layout.phtml file when i add the url
<a href="/mypage/index">test</a>
on Firefox it goes to http://zendbase.local/mypage/index which is correct path.
but on internet explorer it goes to http:///mypage/index which is incorrect path
why is it behaving like this in IE. where I am doing wrong?
I don’t know why IE misses the Server Name.
Solution is
I removed the baseUrl(); ?>” /> from layout.phtml
and added following line in application.ini
resources.frontController.baseUrl = “”