使用htaccess文件缩短URL

时间:2015-06-24 15:09:38

标签: .htaccess url-shortener

我有网址

www.example.com/profile?username=abc

我希望将其重写为

www.example.com/abc

如何使用htaccess实现这一目标?

1 个答案:

答案 0 :(得分:0)

RewriteCond以避免无限重定向

RewriteEngine On

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