Remove public from url in laravel; In this tutorial, we will learn how to remove the public path from URL in laravel 10, 9, 8, and 7 apps using .htaccess and server.php file.
How to Remove Public\Index.php From URL in Laravel 10, 9, 8, 7
There are two ways to remove the public\index.php path from URL in laravel 7, 8, 9, 10 apps; is as follows:
- Solution 1 – Using .htaccess file
- Solution 2 – Rename server.php and move .htaccess file
Solution 1 – Using.htaccess file
To create and update the .htaccess file in the Laravel. You can find .htaccess file in root directory.
You must have mod_rewrite enable on your Apache server. The rewrite module is required to apply these settings. You also have enabled .htaccess in Apache virtual host for Laravel.
Update the code into your .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
Solution 2 – Rename server.php and move .htaccess file
Follow the below steps for remove public from url in laravel
- The first step is, Rename server.php in your Laravel root folder to index.php
- Copy the .htaccess file from /public directory to your Laravel root folder.
Conclusion
In this tutorial remove the public from URL in laravel. Here you have learned two ways to remove the public from URL in laravel.