如何更改以下客户端URL
domain.com/profile/jung domain.com/jung (preferable)
到服务器端的URL
domain.com/profile.php?user_id=100
用php变量中的用户名?
我知道我需要用RewriteCond和RewriteRule来编辑我的htaccess文件,但我还不清楚......
Twitter如何管理他们的用户页面URL?
试试这条规则:
RewriteRule ^profile/([^/]+)$ profile.php?user_name=$1
这将重写/profile/
foobar
to的请求/profile.php?user_name=
foobar
.请注意,您只需重写用户名即可.如有必要,您的脚本必须查找用户ID.