I have below directory structure in PHP
application.
Last 2 files I can access it. but, when I try to open first 2 files, it says file not found. I checked it all files are there. And same permissions given to all files.
I don't know what's wrong in here.
This is conf
file:
RewriteEngine on
RewriteMap manglelow int:tolower
RewriteCond $1 [A-Z]
RewriteRule ^/(.*)$ /${manglelow:$1}
manglelow
converts theURL
to lower case this means that your files need to be lower case to work./assets/img/logos/logo-lg.pnG
will pull up the file
/assets/img/logos/logo-lg.png
just rename your files to be lowercase.