views:

27

answers:

1

tia

here i my .htacess

SetEnv APPLICATION_ENV development

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
+1  A: 

Is your .htaccess being called? Check in the main apache config that AllowOverride is set to All for this vhost.

Rob Allen