Hi I've done this a couple of times now, did you check the paths to your
application and library directory in your main index.php? 

I also added an index.php in my "public_html/zendproject" directory with the
following line:

include 'public/index.php';

Then you can put an original .htaccess in your public folder to handle all
framework requests:

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]

RewriteRule
!\.(htm|html|xml|php|js|ico|gif|GIF|jpg|JPG|png|PNG|css|flv|FLV|swf)$
/index.php

I hope this helps you a bit further.
-- 
View this message in context: 
http://zend-framework-community.634137.n4.nabble.com/Zend-on-a-shared-Host-tp2124880p2125205.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to