Skip to content

Instantly share code, notes, and snippets.

@mikkohei13
Created March 2, 2014 20:03
Show Gist options
  • Save mikkohei13/9312936 to your computer and use it in GitHub Desktop.
Save mikkohei13/9312936 to your computer and use it in GitHub Desktop.
/**
* Return base url automatically for Codeigniter
* Source: http://snipplr.com/view/16894/codeigniter-automatic-base-url-configuration/
*/
$config['base_url'] = ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") ? "https" : "http");
$config['base_url'] .= "://".$_SERVER['HTTP_HOST'];
$config['base_url'] .= str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment