I'm trying to make a simple Zend Webapp running on a shared host. The root folder after logging on FTP server is a folder named 'www'. So the structure is:
/www
/tasklist
/application
/library
/public
/.htaccess
Hosting provider demands to have all paths in .htacccess file absolute. Considering this, the path to main index.php of my Zend app is:
http://aportsupport.cz/tasklist/public/index.php
Which is also a link at which I am able to access my app but with other paths to certain files (css, js etc.) do not work. When I try to access my app with:
http://aportsupport.cz/tasklist/
I only get 404 or 403 error depending on various setups of .htaccess I've already tried. I have no access to error log, nor any server configs. Default controller is 'index', action 'index', module 'default'.