Angular Projects For Beginners With Laravel | Hotel Management System project with angular 8 and Laravel (Remove public on laravel project URL) Part 7

Remove public on laravel project URL

in this tutorial we will discuss about how to remove public on laravel url . you use following step and remove public on your project url 

  1. rename your project root file server.php file to index.php
  2. create 1 .htaacess file on your project root folder

 

.htaccess

-------------------------------------------------------------------------------------

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]

RewriteCond %{REQUEST_URI} !(\.css|\.js|\.png|\.jpg|\.gif|robots\.txt)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !^/public/
RewriteRule ^(css|js|images)/(.*)$ public/$1/$2 [L,NC] 

-------------------------------------------------------------------------------------

 

After this step . public keyword removed on your project url

Tutorial Topics