你能告诉我如何重定向网址吗?
比较www.santaraj.com/steve
到我的新文件profile.php
?
实际上我想按profile.php
显示用户个人资料,但网址仍将保留为域name/username
(www.santaraj.com/steve
)。一个很好的例子是www.twiiter.com/kk
。
答案 0 :(得分:2)
将以下规则放在文档根目录中的.htaccess中:
RewriteRule ^([a-z0-9] +)$ /profile.php?user=$1 [L]
(假设同一文件中的'RewriteEngine')
当用户访问www.santaraj.com/steve时,将运行您的profile.php脚本,其查询字符串为user = steve。
请注意规则中的正则表达式假定用户名由数字和小写字母组成。当然,您可以将其更改为对您有意义的任何内容。