Hi there,
For some reason all my requests are being routed to the same
controller/action (indexController/ indexAction) no matter what I put in my
url foo.com/controlerX/actionY...
Any ideas?
My /document_root/html/index.php
$frontController = Zend_Controller_Front::getInstance();
$frontController->throwExceptions(true);
$frontController->setBaseUrl($baseUrl);
$frontController->setControllerDirectory('../application/controllers');
$frontController->dispatch();
My .htaccess
RewriteEngine on
RewriteBase /document_root/html
RewriteRule !\.(js|vbs|ico|gif|jpg|png|css|swf|xml)$ index.php