skip to Main Content

Add sort variable at end of URL and manipulate if already exists in URL – SEO

Hi I had URLs like this... www.example.com/list.php?type=vehicles&stype=Cars www.example.com/list.php?type=vehicles&stype=Cars&loc=Ludhiana And to sort results, sort variable was appending at last of URL and URL after adding sort variable was www.example.com/list.php?type=vehicles&stype=Cars&sort='**ANYVALUE**' www.example.com/list.php?type=vehicles&stype=Cars&loc=Ludhiana&sort='**ANYVALUE**' And on href i was using <a href="?<?php echo http_build_query(array_merge($_GET, array('sort'…

VIEW QUESTION
Back To Top
Search