任何人都可以帮我修改htaccess吗? 我现在有这样的链接:
http://site.com/all_users.php?uid=cv19143939y
但我想要这样的东西
http://site.com/profile/cv19143939y
我试试这个
RewriteEngine on
RewriteRule ^profile/([0-9]+) all_users.php?uid=$1 [L]
和这个
RewriteRule ^profile/$1 all_users.php?uid=$1 [L]
但简单的不行......
答案 0 :(得分:2)
您的正则表达式不接受a-z
RewriteEngine on
RewriteRule ^profile/([0-9a-z]+) all_users.php?uid=$1 [L]