现在我的 url 格式如下所示:
http://domain.com/index.php?template=user&id=39
我正在使用这个函数来创建唯一的短字符串 ID。
我想要实现的是:用户页面http://domain.com/u/D/
在哪里,是前面提到的函数生成的唯一短字符串。u
D
这是我尝试过的:
RewriteEngine On
RewriteRule ^/(.*)/(.*)/$ index.php?template=$1&id=$2 [L]
现在我的 url 格式如下所示:
http://domain.com/index.php?template=user&id=39
我正在使用这个函数来创建唯一的短字符串 ID。
我想要实现的是:用户页面http://domain.com/u/D/
在哪里,是前面提到的函数生成的唯一短字符串。u
D
这是我尝试过的:
RewriteEngine On
RewriteRule ^/(.*)/(.*)/$ index.php?template=$1&id=$2 [L]