Dynamic URL rewrite using .htaccess
问题 I am pretty new to .htaccess rewrites, and I'm trying to create rules to dynamically rewrite the URLs. For example, say the user enters the following URL: http://example.com/xxx/?user=2002 It would be rewritten into: http://example.com/xxx/user/2002/ If user passes multiple parameters like this: http://example.com/xxx/?user=2002&activity=100&result=true It should become: http://example.com/xxx/user/2002/activity/100/result/ Note: All the query strings will be dynamically generated. This is