这是我当前的 .htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([0-9a-zA-Z-]+)/?$ index.php?u=$1 [L]
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
它将www.example.com转换为example.com并将example.com/username解释为example.com/index.php?u=username
现在我想传递第二个参数,例如example.com/index.php?u=username&e=email并且仍然保持格式example.com/arg1&arg2。我如何在 .htaccess 中做到这一点?