If this is my website and the user typed this url:
How can I make it look like this every time someone visits the home page:
If this is my website and the user typed this url:
How can I make it look like this every time someone visits the home page:
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]