In order to achieved this, you, would have to use url re-write (like @Nichito pointed out)
You would still have your username.php which accepts the paramater (hh).
<?php
$user = $_GET['username']; // Obviously with a bit more security
var_dump($user);
?>
Hope this helps