Skip to content

Instantly share code, notes, and snippets.

@atulmahankal
Created July 13, 2021 05:50
Show Gist options
  • Save atulmahankal/c0d9af7b10d1c120e6cc97270b9c0be1 to your computer and use it in GitHub Desktop.
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.
<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