I seem to be having an issue with Url's being decoded on the stage site incorrectly. I have been looking around online but I can't seem to find anything on how to switch what decoding method is used by default. I can tell that the stage site is using Windows-1252 to decode urls, example below:
Stage site (Wrong)
de-de/people/%C3%A1ine-hurley/ -> de-de/people/áine-hurley
Dev site (Correct)
de-de/people/%C3%A1ine-hurley/ -> de-de/berater/áine-hurley
The dev an live site are both rendering the correct url, which is being decoded using UTF-8. for a comparasion of decoding characters you can visit this link http://www.w3schools.com/tags/ref_urlencode.asp
I am at a loss really, Both stage and live are setup in Azure web apps and from what I can see have the same settings (however I have a feeling it is probably a server setting somewhere).
If anyone could give me more information on how this works or if its possible to change decoding settings on a server that would be much appreciated. If any more information is needed, I am happy to provide it. I was just unsure of what information would be useful.