| Posted: 07 March 2007 at 3:10am | IP Logged
|
|
|
xvrd wrote:
Hello
I'm trying to use LinkFreeze to rewrite an URL. The problem I have is, that some of the URIs have umlauts (oau) in them. It looks like LinkFreeze doesn't like them at all! The links work fine with LinkFreeze disabled, but I get a 404 only on these links with LinkFreeze enabled. Any ideas, suggestions? thats what a link looks like with LinkFreeze active: http://someserver.com/folder/category.htm~catalog%5Fname~som e%5FOnline%5FShop~category%5Fname~Elektrokleinger%E4te~Page~ 1
thanks in advance
|
|
|
Aha.. I had the same trouble... U have to do something in u'r asp||aspx like this: stFileName = Replace(stFileName, "%C3%A4","a") stFileName = Replace(stFileName, "%C3%84","A") stFileName = Replace(stFileName, "%C3%BC","u") stFileName = Replace(stFileName, "%C3%9C","U") stFileName = Replace(stFileName, "%C3%B6","o") stFileName = Replace(stFileName, "%C3%96","O") stFileName = Replace(stFileName, "%C3%9","?")
|