Hi everyone, I have a website that gives me the following url when viewing a users profile.
website.com/index.php?a=profile&u=username
I am trying to create a htaccess rule that will generate a friendly url like
website.com/username
The existing htaccess file is
RewriteEngine on
RewriteCond %{request_filename} -f
RewriteRule ^(.*) $1 [L]
RewriteRule ^([a-z]+)(/([^/]{0,32})(/.+)?)?$ index.php?a=$1&u=$3 [L]
Thanks in advance...