1

When i go to http://localhost:3000/SahanpCMS/resources/ , it shows directory listings. how can i stop this and redirect to 404 page?

enter image description here

Saeed Vaziry
  • 2,195
  • 5
  • 26
  • 39

1 Answers1

5

Add .htaccess file to the root of your project and add the following to it.

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
Basit
  • 936
  • 5
  • 13