Looking for help with URL rewriting in Vantage
Hi,
I have not been able to do this by myself so I thought someone could help me
The search results URL in vantage looks this way :
http://www.website.com/?ls=What&location=Where
I would like to diplay them as
http://www.website.com/What/Where
I have not been successful with the permalinks in wordpress, so I thought I would give a try to the htaccess file and ended up with this :
Code:
RewriteEngine On
RewriteRule ^(.+)/(.+)$ ?ls=$1&location=$2&rewriting [L]
RewriteCond %{QUERY_STRING} ^ls=([^&]+)&location=([^&]+)$ [NC]
RewriteRule ^$ /%1/%2 [R=301,L,NC]
unfortunately it doesn't work well.
is there anyone who can help me ?