使用 htaccess 文件缩短 URL

Shorten URL using htaccess file

我有 url

www.example.com/profile?username=abc

我想将其重写为

www.example.com/abc

如何使用 htaccess 实现此目的?

RewriteCond 以避免无限重定向

RewriteEngine On

RewriteCond %{REQUEST_URI} !^/profile
RewriteRule ^(.*)$ /profile?username=