OK I\'ve tried multiple solutions but still can\'t achieve it. so what I need to do is
mydomain.com/search?q=product&l=london
t
You can achieve the URL mydomain.com/search/product/london by using the following rule in your .htaccess.
mydomain.com/search/product/london
.htaccess
RewriteEngine On RewriteRule ^search/([^/]*)/([^/]*)$ /search?q=$1&l=$2 [L]
Just make sure you clear your cache before testing this.