.htaccess Rewrite Rule Problems [closed]

大兔子大兔子 提交于 2019-12-12 05:26:57

问题


can anyone help me with htaccess rewrite? I have now links like:

http://site.com/all_users.php?uid=cv19143939y

but i want something like this

http://site.com/profile/cv19143939y

Im try with this

RewriteEngine on RewriteRule ^profile/([0-9]+) all_users.php?uid=$1 [L]

and this

RewriteRule ^profile/$1 all_users.php?uid=$1 [L]

but simple dont work..


回答1:


Your regular expression doesn't accept a-z

RewriteEngine on
RewriteRule ^profile/([0-9a-z]+) all_users.php?uid=$1 [L]


来源:https://stackoverflow.com/questions/7870792/htaccess-rewrite-rule-problems

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!