Last active
March 9, 2024 17:17
-
-
Save shahaj90/aadf08fc892390fd252dde6922491b60 to your computer and use it in GitHub Desktop.
Laravel htaccess file for cPanel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<IfModule mod_rewrite.c> | |
# That was ONLY to protect you from 500 errors | |
# if your server did not have mod_rewrite enabled | |
RewriteEngine On | |
# RewriteBase / | |
# NOT needed unless you're using mod_alias to redirect | |
RewriteCond %{REQUEST_URI} !/public | |
RewriteRule ^(.*)$ public/$1 [L] | |
# Direct all requests to /public folder | |
</IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment