When i go to http://localhost:3000/SahanpCMS/resources/ , it shows directory listings. how can i stop this and redirect to 404 page?
http://localhost:3000/SahanpCMS/resources/
404
Add .htaccess file to the root of your project and add the following to it.
.htaccess
RewriteEngine On RewriteRule ^(.*)$ public/$1 [L]