0

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
  • 1,975
  • 4
  • 22
  • 38

1 Answers1

4

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
  • 908
  • 5
  • 11