Hey,
If i wanted to simply redirect /clients/page/
to /clients.php?view=page
i would use something as simple as this, it works great.
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^clients/([^/]+) /clients.php?section=$1&$2 [NC]
If i had for example, a url like: /clients/page/?name=Tom
how could i transfer those HTTP GET variables to a simple url like /clients.php?view=page&name=Tom
i have tried and failed.
Any ideas?