I'm wondering if its possible to allow users to access my js files from sub-sub folders. The folder structure is:
images
js
Models
Views
|-employee
|--css
|---employee.css
|--images
|---img1.jpg
|---img2.png
|--js
|---employee.js
|---employee.html
|--index.html
If you access any of:
http://localhost/employee/
http://localhost/employee/js/employee.html
there's no error. But if you try to access any of:
http://localhost/employee/js/employee.js
http://localhost/employee/images/img1.jpg
it gives me 404.
Thanks in advance.