Welcome Guest, Not a member yet? Register   Sign In
virtual subdomain with htaccess
#16

[eluser]Jelmer[/eluser]
While they don't address your problem specificly they find a way to map subdomains to a specific function of a specific controller. You want to map subdomains to corresponding controller, which is quite similar.

If your current domain works as a wildcard every subdomain should be handled exactly like the domain (if not, look at the instructions from the 2nd url).

The point of the username as URL is that everything works from the document root which is called on every subdomain and doesn't need "physical" directories to work. Important from the second URL are the instruction about the base_url:
Code:
$config['base_url'] = "http://".$_SERVER["HTTP_HOST"];

And the first URL learns you to define a constant that contains the subdomain. After which you can change the default_route in the routes.php by testing for the contents of the constant. And you could have each subdomain handled by different controllers this way. I prefer to set the constants in the main index.php instead of a config - but that's probably not considered good practice.

For example (with constant SUBDOMAIN set):
Code:
if (SUBDOMAIN == '' OR SUBDOMAIN == 'www')
    $route['default_controller'] = "site";
else
    $route['default_controller'] = SUBDOMAIN;


Messages In This Thread
virtual subdomain with htaccess - by El Forum - 04-23-2009, 09:08 AM
virtual subdomain with htaccess - by El Forum - 04-23-2009, 09:12 AM
virtual subdomain with htaccess - by El Forum - 04-23-2009, 09:46 AM
virtual subdomain with htaccess - by El Forum - 04-23-2009, 10:03 AM
virtual subdomain with htaccess - by El Forum - 04-23-2009, 10:43 AM
virtual subdomain with htaccess - by El Forum - 04-23-2009, 11:35 AM
virtual subdomain with htaccess - by El Forum - 04-23-2009, 12:09 PM
virtual subdomain with htaccess - by El Forum - 04-23-2009, 01:18 PM
virtual subdomain with htaccess - by El Forum - 04-26-2009, 08:44 AM
virtual subdomain with htaccess - by El Forum - 04-26-2009, 09:28 AM
virtual subdomain with htaccess - by El Forum - 04-26-2009, 11:19 AM
virtual subdomain with htaccess - by El Forum - 04-29-2009, 04:26 AM
virtual subdomain with htaccess - by El Forum - 04-29-2009, 04:44 AM
virtual subdomain with htaccess - by El Forum - 04-29-2009, 05:05 AM
virtual subdomain with htaccess - by El Forum - 04-29-2009, 05:20 AM
virtual subdomain with htaccess - by El Forum - 04-29-2009, 07:39 AM



Theme © iAndrew 2016 - Forum software by © MyBB