Created
July 13, 2021 05:50
-
-
Save atulmahankal/c0d9af7b10d1c120e6cc97270b9c0be1 to your computer and use it in GitHub Desktop.
While uploading the Laravel project into Shared Hosting (Web Server) just upload the below coded .htaccess file at the project root. No need to change the Laravel Project structure.
This file contains 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> | |
Options +FollowSymLinks | |
RewriteEngine On | |
RewriteCond %{REQUEST_URI} !^/public/ | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteRule ^(.*)$ /public/$1 | |
#RewriteRule ^ index.php [L] | |
RewriteRule ^(/)?$ public/index.php [L] | |
</IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment