So in my .htaccess is exactly the default:
RewriteEngine on
RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php
The content of UserController.php is simply:
Code:
<?php
class UserController extends Zend_Controller_Action {
public function indexAction()
{
}
public function loginAction()
{
}
}