これは私の現在の .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 のような 2 番目の引数を渡し、 example.com/arg1&arg2の形式を維持したいと考えています。.htaccess でそれを行うにはどうすればよいですか?