Quote:
Originally Posted by Zamurick X
Also does this regex support numbers? It appears it only supports a-z as the first character of the user name.
Try changing it to:
Code:
RewriteEngine on
RewriteRule ^/?([a-zA-Z0-9]+)$ member.php?username=$1 [L]
Although I'm not sure if it already does support all cases as well as numbers. Just a suggestion. Once again, thank you. 
|
Great suggestion! Thanks for helping out

I've updated the article to reflect your suggestion.