I'm working with Zend Framework 1, and everything are going all right, except for one thing. My website doesn't load the assets. I know that could be a problem with .htaccess, but i've tried to many thing to fix that without success.
My folder structure is:
|- /
|---application
|---library
|---public
|------assets
|------cgi-bin
|------images
|---resources
My .htaccess file (inside the /public folder):
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
Unfortunately when I access the website, it loads everything, except the files that are located in my /public/assets and /public/images folder. When I try to access the file via URL, the ZEND returns my a "Page not found" error.
Anyone knows how can i fix that?
Thank you!