次の 2 つの URL を 2 つの異なるページに書き換えたいと考えています。
/potato/prakash.raman ----> /potato/user.php?handle=prakash.raman
/potato/prakash.raman/watchlist ----> /potato/watchlist.php?handle=prakash.raman
これらは私の書き直しです
ReWriteRule ^(.*)/watchlist watchlist.php?handle=$1
ReWriteRule ^(.*)$ user.php?handle=$1
どちらも user.php?handle に書き換えられているようです
私は何が間違っているのでしょうか。どうすればこれを修正できますか?