1

If this is my website and the user typed this url:

http://mydomain.com/

How can I make it look like this every time someone visits the home page:

http://mydomain.com/index.php

Dimitar K. Nikolov
  • 130
  • 1
  • 2
  • 9

1 Answers1

3

You can use RedirectMatch directive in your DOCUMENT_ROOT/.htaccess file:

RedirectMatch 302 ^/?$ /index.php

OR using mod_rewrite:

RewriteEngine On
RewriteRule ^/?$ /index.php [L,R]
anubhava
  • 713,503
  • 59
  • 514
  • 593