Page 1 of 1
encoding problem
Posted: Mon Jul 28, 2008 9:13 am
by sbutt
Hi All,
I have a link/url:
Code: Select all
http://link.jubii.dk/sgo/l_wres/http:// ... /L%C3%B6we
when clicked yields
Code: Select all
http://de.wikipedia.org/wiki/L%C3%83%C2%B6we
, where as it should yield *
http://de.wikipedia.org/wiki/L%C3%B6we*.
I'm not doing any url decoding. Could anybody help?
Thanks.
Re: encoding problem
Posted: Mon Jul 28, 2008 9:33 am
by jaoudestudios
you have
http:// twice in the link!

Re: encoding problem
Posted: Tue Jul 29, 2008 5:14 am
by sbutt
is just a redirection link, so the complete link works it's just that the encoding gives a problem.
Re: encoding problem
Posted: Tue Jul 29, 2008 6:53 am
by dml
The redirector isn't redirecting to exactly the same link it was given.
Code: Select all
> lynx -mime_header 'http://link.jubii.dk/sgo/l_wres/http://de.wikipedia.org/wiki/L%C3%B6we'
HTTP/1.1 302 Found
Connection: close
Date: Tue, 29 Jul 2008 11:50:27 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
Location: http://de.wikipedia.org/wiki/L%c3%83%c2%b6we
Cache-Control: private
Content-Type: text/html; charset=iso-8859-1
Content-Length: 161
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href='http://de.wikipedia.org/wiki/L%c3%83%c2%b6we'>here</a>.</h2>
</body></html>