I have recently installed the Zend Framework on our server running IIS7 & PHP5.
I have uploaded an application to the server built using the ZF.
The Index controller renders fine; the Zend_Form login form is built as expected, which implies that the ZF install is working OK.
However, when the login is performed, and $this->_helper->redirector('index', 'reseller'); is called in the Index controller, I receive a 404 message from the server!
Any ideas what could be causing this?
Many thanks
EDIT:
The URL I'm being redirected to is (which is correct):
http://mydomain.co.uk/public/reseller
Physical path requested (this may be the problem!):
D:\vhosts\mydomain.co.uk\httpdocs\public\reseller
(This is the 'reseller' controller, 'index' action, that is part of the application).

