How to stop laravel directory browsing

后端 未结 1 1430
离开以前
离开以前 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.

    
        RewriteEngine On
        RewriteRule ^(.*)$ public/$1 [L]
    
    

    0 讨论(0)
提交回复
热议问题