0

リンク

<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
これを使用する適切な方法を教えてください

4

1 に答える 1

0

最初のルールは 2 番目と 3 番目のリンクに一致しますが、実装したルールで必要とされる小文字のみを含むのはこれらのリンクだけです。

于 2013-07-10T16:50:26.177 に答える