php - Set .htaccess for Zend Framework 1 on web server -


this first time try put project on web server. don't know how set .htaccess file of zend framework project.

i have structure:

/webroot     /zendproject         /application         /docs         /library         /public             /css             /images             /js             .htaccess              index.php          /tests     /include 

this 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 help


Comments