リンク
<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>
私のユーザーは-._ letters and digit
、ユーザー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]
問題は、2番目のルールのみが適用されることです。
つまり、クリックしたリンクに関係なく、index.php?view=profile
これを使用する適切な方法を教えてください