Skip to content

Instantly share code, notes, and snippets.

@pringgojs
Created October 20, 2018 14:58
Show Gist options
  • Save pringgojs/ff496d60e61b31bf7484043cda845e89 to your computer and use it in GitHub Desktop.
Save pringgojs/ff496d60e61b31bf7484043cda845e89 to your computer and use it in GitHub Desktop.
htaccess for remove public path in url laravel
In Laravel 5.5 create .htacess file in your root directory and placed the following code:- Reference Link
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -d [OR]
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^ ^$1 [N]
RewriteCond %{REQUEST_URI} (\.\w+$) [NC]
RewriteRule ^(.*)$ public/$1
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ server.php
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment