I know that this site has many questions about URL rewriting. But as a newbie, I could not find the correct answer for my case.
My question is: I would like to rewrite the original URL like this: when user visit:
http://username.example.com/a/b/c/d/e/f/g/h...
the apache will process request as
http://example.com/index.php?user=username&a=b&c=d&e=f&g=h...
According to what I knew, the solution could be using QUERY STRING, but I don't know how to do that.
Any help will be appreciated! Thanks,