首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

htaccess规则要如何写呢?请在?号处填写内容。多谢(急)

2012-03-29 
htaccess规则要怎么写呢?请在?号处填写内容。谢谢(急急急)原来的index.php?id123转换123.htmlhtaccess如下

htaccess规则要怎么写呢?请在?号处填写内容。谢谢(急急急)
原来的
index.php?id=123 转换  
123.html  

htaccess如下:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^([0-9]+).html$ ?id=$1
</IfModule>

我现在想把原来的123改过加密的。用的是这个base64_encode

index.php?id=MTIz  
MTIz.html

htaccess规则要怎么写呢?
<IfModule mod_rewrite.c>
RewriteEngine On
??????????????????????????????????
</IfModule>

[解决办法]
RewriteRule ^(.+).html$ ?id=$1

热点排行