Skip to content

Instantly share code, notes, and snippets.

@moaj257
Last active January 21, 2023 17:41
Show Gist options
  • Save moaj257/f29ce636dd6b737c2f08e21d1e53efed to your computer and use it in GitHub Desktop.
Save moaj257/f29ce636dd6b737c2f08e21d1e53efed to your computer and use it in GitHub Desktop.
Laravel/Lumen Shared Hosting htaccess

Copy htaccess code to your laravel/lumen .htaccess file.

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} !^public
RewriteRule ^(.*) public/$1 [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment