grashoper has asked for the wisdom of the Perl Monks concerning the following question:
this works for redirecting from a production site, but what I want is to be able to input sitecode.mysiteurl.com and have it reach the site. I don't recall changing anything that would have broken it, but am not sure why it no longer works.if (!(substr($Request->ServerVariables("SERVER_NAME")->item(),0,3) eq +"www") && !(substr($Request->ServerVariables("SERVER_NAME")->item(),0 +,3) eq "mlx") && !(lc($Request->ServerVariables("SERVER_NAME")->item( +)) eq "localhost")) $Request->ServerVariables("SERVER_NAME")->item() =~ /([\w+]*)\./; $str .= "<inputH name=\"site\" value=\"".$1."\"/>";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: url rewriter?
by moritz (Cardinal) on Sep 08, 2009 at 18:54 UTC |