We are doing I18N recently, and we have a menu to switch the language between language en, jp, and fr. Once we switch the language, the url become like below, there is a querystring append in the end of the url.
http://localhost:3030/loadTests?lang=en
Here is the question, because we don't append the lang parameter in all existing links and hrefs, if we click some link on the website, the url would be like:
http://localhost:3030/loadTests/1
the querystring lang=en didn't append in the end of the url, and we want the lang=en always append in the end of the url, how can i achieve it?
Hope i describe my question clearly.
Thanks in advance!