Doubt about 404 non-existent error

1

I have a question, and I do not know what to do. I am using Zend Framework 1.12, PHP5.6. It happens that my system is in a subdirectory called "system":

/ system / application / ...

My public folder:

/ system / public /

In some system requests, such as a view that is rendered with angularjs, which is inside the /system/public/pangularjs/html/template.html folder, another example is php files that are directly at the root of the folder /system/public/sub/files.php, are accessed directly in the URL, however every time I call one of these public files, the framework tries to find this folder as if it were a system method, so it tries to load as " systemAction "and enters the error exception 404, as the file exists in the public folder it skips the 404 error exception and loads the file. But it writes the 404 error log. How could I do to avoid or ignore this check every time I call a public folder file, since there is no need to check for exceptions in files that exist.

    
asked by anonymous 29.09.2017 / 23:23

0 answers