vote up 0 vote down star

I have been using the below code in my Bootstrap.php file in CakePHP to detect subdomains, which appears to work really well.

preg_match('/^(?:www\.)?(?:(.+)\.)?(.+\..+)$/i', env('HTTP_HOST'), $matches); 
define('SUBDOMAIN', empty($matches[1]) ? false : $matches[1]); 
define('HOST', $matches[2]); 
define('BASE_URL', 'http://' . HOST); 
if(SUBDOMAIN) {
    debug (BASE_URL);
    debug (HOST);
    debug (SUBDOMAIN);
    exit;
}

All good. Now, what I want to do is enable these subdomains to be mirrored using DNS CNAMES in the same way that you can with cname.createsend.com (Campaign Monitor). Thanks in advance.

flag
1  
I've been reading through your question about 10 times now. Maybe it's just me, but I don't understand it. Can you explain in more detail what you expect to happen? – Tomalak Feb 18 at 9:00

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.