Links
<a href='/'>Home</a>
<a href='/contact'>Contact</a>
<a href='/johnsmith'>Profile 1</a>
<a href='/john.smith'>Profile 2</a>
<a href='/john_smith'>Profile 3</a>
<a href='/john-smith'>Profile 4</a>
<a href='/1_john.smith_1'>Profile 5</a>
my user contains -._ letters and digit
in the user ID
.htaccess
RewriteEngine On
RewriteRule ^([a-z]+)/?$ index.php?view=$1 [NC,L]
RewriteRule ^([a-z0-9_-]*[\.]*[a-z0-9_-]+)/?$ index.php?view=profile [NC,L]
the problem is only the second rule is applied
means whichever link i clicked it goes to index.php?view=profile
please tell me the proper way of using this