this is my first time I try to put some project on web server. I really don't know how to set the .htaccess file of my Zend Framework project.
I have this structure:
/webroot
/ZendProject
/application
/docs
/library
/public
/css
/images
/js
.htaccess
index.php
/tests
/include
this is my default .htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
Thanks for help