Shorten URL using htaccess file

1.1k views Asked by At

I have the url

www.example.com/profile?username=abc

and i want to rewrite it as

www.example.com/abc

How can I achieve this using htaccess?

1

There are 1 answers

4
splash58 On BEST ANSWER

RewriteCond to avoid infinite redirection

RewriteEngine On

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