How to Redirect index.php to the Root using Htaccess in Website

Опубликовано: 22 Ноябрь 2022
на канале: WebTask With Hassan
3,337
14

In this website tutorial for beginners you will learn how to redirect index php to the root directory / folder by adding code in .htaccess file in website e,g html, php or wordpress.

Step1: Add code in .htaccess.
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{THE_REQUEST} ^.*\/index\.phpl?
RewriteRule ^(.*)index\.php?$ https://www.mywebsite.com/$1 [R=301,L]

Step 2: Replace "mywebsite.com" by your website / domain name.

#htaccess #index #root #website #wordpress #php #html #webtaskwithhassan #hassangilani