现在我的网址格式如下:
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]
答案 0 :(得分:0)
RewriteEngine On
RewriteRule ^(.*)/(.*)/?$ index.php?template=$1&id=$2 [L,QSA]