Is there an easy way to create subdomains on codeigniter?

前端 未结 2 1270
野性不改
野性不改 2020-12-15 00:19

Is there an easy way to create subdomains on codeigniter like api.site.com?

2条回答
  •  鱼传尺愫
    2020-12-15 00:59

    You need to create the subdomain in your DNS or else setup a wildcard for any subdomain to work first.

    Once you've got that running I guess it's a case of switching the base_url in your config file.

    if ($_SERVER['SERVER_NAME'] == "api.blah.com") {
        $config['base_url'] = "http://api.blah.com/";
    }
    else {
        $config['base_url'] = "http://www.blah.com/";   
    }
    

提交回复
热议问题