私を助けてください。この URL を書き換える必要があります
http://example.com/topusers.php?sort=post_count&time=month
このスタイルに
http://example.com/top/post_count/month
これを .htaccess で使用していますがexample.com/top
、アクセスすると 404 Not Found と表示されます。
RewriteRule ^top/([^/.]+)?/?(.*)$ topusers.php?sort=$1&time=$2
URL経由で設定されていない場合はexample.com/top
デフォルト値を設定したため、経由でもアクセスできる必要があります。sort
time
ありがとうございました。