I have a Visual Studio project, which is developed locally. Code files have to be deployed to a remote server. The only problem are the URLs they contain, which are hard-cod
add \ before special characters:
s/\?page=one&/page\/one\//g
etc.