附加网址,以便它不会给404 [关闭]

I want to append something in the URLs so that it remains the valid one.

For Ex:

The Orignal URL is : http://www.menards.com/main/appliances/air-conditioners-dehumidifiers/soleus-12-000-btu-portable-air-conditioner-with-heat-pump/p-1754474-c-5571.htm

The appended one : http://www.menards.com/main/appliances/air-conditioners-dehumidifiers/soleus-12-000-btu-portable-air-conditioner-with-heat-pump/p-1754474-c-5571.htm&sort=

I want to add something anywhere in this URL so that it will not give 404 Page Not Found.

"I want to do it for some specific reason"

To append vars to the end of a url, the first one needs to start with the question mark (?), with subsequent variables added with an ampersand (&).

For example:

'http://my.site.com/index.html?variable1=hello&variable2=goodbye'

This can be done for "any number of specific reasons"