0

I have used a simple

<a href="/index.php">link</a>

to try and redirect to my index/home page, but in the search bar it shows ..../index.php. I want to know a way to redirect to the page without the index.php showing in the search bar.

Programing
  • 27
  • 5

1 Answers1

0

Add this rewrite in .htaccess file:

RewriteEngine On
RewriteRule ^index\.php$ / [R=301,L]
JarekBaran
  • 1,311
  • 2
  • 7
  • 12