I'm writing a web app with the Dancer framework and I'd like to offer each user a subdomain, like wordpress.com does.

How can I specify my Dancer routes to take account of the domain name?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Look at how https://github.com/sukria/ThisShit is implemented

link|improve this answer
Ah, I need to get the host from the request inside the route: get '/' => sub { my $host = request->host; $host =~ s/\.example\.com.*$//; # $host now contains the subdomain – andymurd Apr 2 '11 at 22:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.