Im using Search Navigation web part to navigate to a search result page when user decides to do a scoped search. Im trying to pass all scoped search to the same search result page, instead of different search page per scope. When user click's on the item of the Search Navigation, SharePoint passes the search box keyword as query string parameter, which is expected:
/searchcenter/results.aspx?k=benefits
My question is, how to add another query string parameter that will identify the scope of my search and point to:
/searchcenter/results.aspx?k=benefits&q=scope1
When I update the Search Navigation item's url to point to:
/searchcenter/results.aspx?q=scope1
Then SharePoint creates the invalid URL with 2 question marks when user types a search and clicks on the item:
/searchcenter/results.aspx?q=scope1?k=benefits
Any ideas?