What you are looking for, assuming that your are using Apache and not a Windows Server, is Mod_rewrite.
With this module you can rewrite URLs. Here's a quick example of a script that renames Home as index.php:
RewriteEngine on
RewriteRule ^Home/?$ index.php [L,NC]
This code should be placed...