To do that, first create your file index.php. Now, write that page asif it were an HTML page, and where you want the 6 digit number to appear, enter this:
<?php print $_GET['id']; ?>
So for instance, if you wanted a link to a file which was whatever that 6 digit number was, .html, you'd do this:
<a href="<?php print $_GET['id']; ?>.html">Click here</a>
Hope that helps 🙂