View Single Post
  #6 (permalink)  
Old 04-18-2008, 06:55 AM
sebastian sebastian is offline
Junior Member
 
Join Date: Apr 2008
Location: Germany, Hamburg
Posts: 11
Default

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()
	{
		
	}
}
Reply With Quote