Skip to content

Instantly share code, notes, and snippets.

@uluumbch
Created March 20, 2024 08:48
Show Gist options
  • Save uluumbch/569a2b382d468fd1b5d6d2cc221c7385 to your computer and use it in GitHub Desktop.
Save uluumbch/569a2b382d468fd1b5d6d2cc221c7385 to your computer and use it in GitHub Desktop.
htaccess file for redirecting request to public folder. Used on Laravel project
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment