问题
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