URL rewrite helps you to hide your extension name or show different extension name like index.php can be displayed as index.html or only index or home etc.

The following code will rewrite anyfile.php to anyfile.html

RewriteEngine on
RewriteRule ^(.*)\.html$ $1.php

The following code will rewrite index.php to index

RewriteEngine on
RewriteRule ^index index.php