Skip to content

Instantly share code, notes, and snippets.

@meetsohail
Created December 3, 2021 20:10
Show Gist options
  • Save meetsohail/a23a8a4befd3d0d4575fdb3b50f380ef to your computer and use it in GitHub Desktop.
Save meetsohail/a23a8a4befd3d0d4575fdb3b50f380ef to your computer and use it in GitHub Desktop.
Run Laravel project on cPanel shared hosting?
# add to .htaccess root
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^$ public/index.php [L]
RewriteRule ^((?!public/).*)$ public/$1 [L,NC]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment