Skip to content

Instantly share code, notes, and snippets.

@binsarjr
Created November 14, 2021 16:53
Show Gist options
  • Save binsarjr/7dc89d895dd59fd94fa6c68b7d06448b to your computer and use it in GitHub Desktop.
Save binsarjr/7dc89d895dd59fd94fa6c68b7d06448b to your computer and use it in GitHub Desktop.

.htaccess to hide directory laravel projects. Take care when you forget

<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews -Indexes
    </IfModule>

    RewriteEngine On
    RewriteRule !public [F,R=404]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment