>
> When you modify the URL at the appropiate phase, the URL displayed is not
> changed (which
> is neither good nor bad).
> To change the url you can do
>
> $r->header_out(Location => $url);
> return Apache::Constants::REDIRECT;
>
> where you redirect the browser directly to another URL, and indeed the
> browser will
> display the new url name.
>
> Knowing this, is there any other way to manage URL display without using
> the example
> posted above?
you can always use the cgi redirect
my $cgi = new CGI;
$cgi->redirect(location=>$somelocation);
/G
--
www.gh-webinteractive.com

> ---------------------------------------------------------
>
> Descubre tu futuro para este verano: aventuras, amores, trabajo...
> Horóscopo en Ya.com: http://www.astrocentro.com/ya
> Ya.com ADSL Router Wi-Fi: Sólo 29,90 €/mes + IVA*. Router + Antivirus y
> firewall ˇGratis! http://acceso.ya.com/adsl/256router
>
> --
> Report problems: http://perl.apache.org/bugs/
> Mail list info: http://perl.apache.org/maillist/modperl.html
> List etiquette: http://perl.apache.org/maillist/email-etiquette.html
>
>
>

-- 
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html

Reply via email to