How to stop laravel directory browsing

后端 未结 1 1451
离开以前
离开以前 2021-01-27 17:15

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

相关标签:
1条回答
  • 2021-01-27 17:47

    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>
    
    0 讨论(0)
提交回复
热议问题