Forum Moderators: open
<a name="msg1"> Itīs just that the hash gets urlencode [php.net]d to %23. If you replace that with the hash everything will work just fine.
It seems that Brett changed something in the redirect script.
Andreas
[webmasterworld.com...]
any way to prevent the redirect?
or does Brett not want us to go direct?
You would need to modify win_proxy directly. Look for the following two lines at the body of the script:
my $response = &fetch_request($r);
$c->send_response($response);
The first line will request the response from the remote server and do its magic on the content. The second line will pass the response we got from the remote server back to the browser. Between those two lines you need to add the code that modifies the Location response header.
my $loc = $response->header('Location');
$response->header('Location', $loc) if $loc =~ s/%23/#/;
Andreas