我想将以下 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
我可能做错了什么。我怎样才能解决这个问题 ?