If you're a developer, you're likely to have frustration with "index.php" cluttering up your website's web addresses. It not only looks unprofessional but can also be an obstacle to achieving user-friendly, search-engine-optimized URLs.
Fortunately, in Laravel 9, the process of eliminating "index.php" from your URLs has become more straightforward than ever. In this blog, we will take you through the step-by-step process of removing "index.php" from your Laravel project's URLs, ensuring your web application not only performs better but also provides a sleek and modern user experience.
Let's dive in and make your Laravel application shine!
Example:
// Valid URL
https://valid-url-example.com/how-to-remove-index-php
// Invalid URL
https://valid-url-example.com/index.php/how-to-remove-index-php
There are multiple ways to remove index.php from the URL in laravel.
In this example, we will simply add the below code to the public/index.php file.
if (strpos($_SERVER['REQUEST_URI'],'index.php') !== FALSE )
{
$new_uri = preg_replace('#index\.php\/?#', '', $_SERVER['REQUEST_URI']);
header('Location: '.$new_uri, TRUE, 301);
die();
}
In this example, we will remove/redirect the URL using the RouteServiceProvider.php file.
app/Providers/RouteServiceProvider.php
<?php
namespace App\Providers;
use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\RateLimiter;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\Str;
class RouteServiceProvider extends ServiceProvider
{
/**
* The path to the "home" route for your application.
*
* This is used by Laravel authentication to redirect users after login.
*
* @var string
*/
public const HOME = '/home';
/**
* Define your route model bindings, pattern filters, etc.
*
* @return void
*/
public function boot()
{
$this->configureRateLimiting();
$this->removeIndexPHPFromURL();
$this->routes(function () {
Route::prefix('api')
->middleware('api')
->namespace($this->namespace)
->group(base_path('routes/api.php'));
Route::middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
});
}
/**
* Configure the rate limiters for the application.
*
* @return void
*/
protected function configureRateLimiting()
{
RateLimiter::for('api', function (Request $request) {
return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip());
});
}
protected function removeIndexPHPFromURL()
{
if (Str::contains(request()->getRequestUri(), '/index.php/')) {
$url = str_replace('index.php/', '', request()->getRequestUri());
if (strlen($url) > 0) {
header("Location: $url", true, 301);
exit;
}
}
}
}
If you work with Nginx, then you can redirect the URL using the following code.
if ($request_uri ~* "^/index\.php(/?)(.*)") {
return 301 $2;
}
In this example, you can add the below code to the .htaccess file and simply redirect to the main URL.
<IfModule mod_rewrite.c>
RewriteEngine On
# Redirect index.php URL
RewriteRule ^index.php/(.+) /$1 [R=301,L]
</IfModule>
Removing 'index.php' from your URL is a crucial step towards achieving cleaner and more user-friendly web addresses. We've explored the process thoroughly in this blog, breaking down the essential steps to help you streamline your website's URLs.
By following these techniques, you not only enhance the aesthetics of your website but also improve its SEO and overall user experience. Laravel 9's flexibility and customization options make it easier to achieve this.
So, implement these methods and transform your URLs from cluttered to clean, ensuring that your website not only looks professional but also performs at its best.
You might also like:
Hey there, Ever found yourself scratching your head over unexpected errors in your PHP code? Fret not, because today, we...
Dec-15-2023
In this article, we will see laravel 9 socialite login with twitter account. Many websites provide different t...
Nov-12-2022
In this article, we will see how to use CSS in React JS. Also, we will see camel case CSS in React JS. React i...
Aug-17-2022
Hello, laravel web developers! In this article, we'll see how to add a blur effect on images in laravel 11. Her...
Aug-23-2024