In-spite of going through all the resources about rewriting URL, I am not able to successfully apply the same to my site.
The URl is www.mysite.com/Client/?clientname=name
I want it to be www.mysite.com/Client/name
Client is another directory inside the root directory.
Currently I have
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} Client/ [NC]
RewriteRule (.+) index.php?clientname=$1 [L]
Please help.