Clean up excess redirects

This commit is contained in:
Daniel Bowling 2021-01-23 19:23:22 -05:00
parent a588be82b4
commit aef71fdbae

View File

@ -5,12 +5,13 @@ use Mojolicious::Lite;
get '/' => sub {
my ($c) = @_;
my $hostHeader = $c->req->headers->host();
my $scheme = $c->req->url->base->scheme();
if ($hostHeader =~ /www.wethepeople.win(|:[0-9]{1,5})/) {
$c->render()
}
else {
$c->redirect_to('http://www.wethepeople.win')
$c->redirect_to("$scheme://www.wethepeople.win")
}
} => 'index';