I'm having an issue in trying to get my search URL to be "SEO Friendly", at the moment my URL currently looks like this - www.example.com/pagename?param1=SELECTED-FEATURE&location=ENTERED-LOCATION
If the user wants to search for multiple features the URL looks like www.example.com/pagename?param1=SELECTED-FEATURE¶m1=SELECTED-FEATURE&location=ENTERED-LOCATION .
If the user selects one feature I would like my URL to be written like the following - www.example.com/pagename/SELECTED-FEATURE/ENTERED-LOCATION
If the user selects multiple features I would like the URL to be written like the following - www.example.com/pagename/SELECTED-FEATURE/SELECTED-FEATURE/ENTERED-LOCATION
I do not want to use the POST method.
Thanks, Codarz360