mod_rewrite建议

时间:2012-06-14 13:33:59

标签: php .htaccess mod-rewrite

现在我的网址格式如下:

http://domain.com/index.php?template=user&id=39

我正在使用this function创建唯一的短字符串ID。

我想要实现的是:http://domain.com/u/D/其中u是用户页面,D是前面提到的函数生成的唯一短字符串。

这就是我的尝试:

RewriteEngine On

RewriteRule ^/(.*)/(.*)/$ index.php?template=$1&id=$2 [L]

1 个答案:

答案 0 :(得分:0)

RewriteEngine On
RewriteRule ^(.*)/(.*)/?$ index.php?template=$1&id=$2 [L,QSA]