原来的
index.php?id=123  转换   
123.html             htaccess如下:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^([0-9]+).html$ ?id=$1
</IfModule>我现在想把原来的123改过加密的。用的是这个base64_encodeindex.php?id=MTIz   
MTIz.htmlhtaccess规则要怎么写呢?
<IfModule mod_rewrite.c>
RewriteEngine On
??????????????????????????????????
</IfModule>