この状況では、.htaccessの設定は難しいようです。出会い系サイトの場合、次のシナリオがあります。
We assume john is logged in:
domain.com/john //this works no problem
domain.com/?askout=yes&when=later //this doesn't work, if john is logged in and pastes
this url, it automatically redirects to domain.com/john
instead, htaccess should see the ? and know it's
not a valid user. It should keep the entire query,
and redirect to /profiles.php?askout=yes&when=later
.htaccessは次のとおりです。
RewriteRule ^(\w+)/?$ ./profiles.php?username=$1
基本的に、私は.htaccessにすぐにそれを知ってもらう必要がありますか?上記の書き換えルールを使用しないことを意味します。これを達成する方法はありますか?