you do this with mod_rewrite, which i'm currently trying to get my brain around.
your first problem would be something like
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule /([0-9a-z]+) /siteengine/$1.php
</IfModule>
that takes the original rule, and puts the stuff in the brackets into $1
hope that makes more sense to you than it is for me!
adam