Yeah, it's an option in the config -- in config.pl, there are these lines:
# Support URLs of the form http://username.yoursite.com/ ? # If so, what's the part after "username." ? $USER_VHOSTS = 1; $USER_DOMAIN = $DOMAIN;
# If you ONLY want USER_VHOSTS to work and not the typical /users/USER and /community/USER # then set this option: $ONLY_USER_VHOSTS = 1;
That's what controls the user subdomains, but as kraig says, it's a security issue and you really, really shouldn't do it unless you absolutely have to.
no subject
# Support URLs of the form http://username.yoursite.com/ ?
# If so, what's the part after "username." ?
$USER_VHOSTS = 1;
$USER_DOMAIN = $DOMAIN;
# If you ONLY want USER_VHOSTS to work and not the typical /users/USER and /community/USER
# then set this option:
$ONLY_USER_VHOSTS = 1;
That's what controls the user subdomains, but as