Many options here from very simple to crazy complex:
Easy
$config['base_url'] = 'http://'. $_SERVER['HTTP_HOST'].'/';
This supports:
Complex
$config['base_url'] = isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on' ? 'https' : 'http';
$config['base_url'] .= '://'. $_SERVER['HTTP_HOST'];
$config['base_url']l .= str_replace(basename($_SERVER['SCRIPT_NAME']), '', $_SERVER['SCRIPT_NAME']);
This supports:
Potentially insane
This one is very similar but keeps your config.php clean, offers a fallback if HTTP_HOST fails, gives you a constant to use throughout the site and can give you a relative URI to BASEPATH and APPPATH from web root too.
Put this in constants.php:
/*
|--------------------------------------------------------------------------
| Docment root folders
|--------------------------------------------------------------------------
|
| These constants use existing location information to work out web root, etc.
|
*/
// Base URL (keeps this crazy sh*t out of the config.php
if(isset($_SERVER['HTTP_HOST']))
{
$base_url = isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on' ? 'https' : 'http';
$base_url .= '://'. $_SERVER['HTTP_HOST'];
$base_url .= str_replace(basename($_SERVER['SCRIPT_NAME']), '', $_SERVER['SCRIPT_NAME']);
// Base URI (It's different to base URL!)
$base_uri = parse_url($base_url, PHP_URL_PATH);
if(substr($base_uri, 0, 1) != '/') $base_uri = '/'.$base_uri;
if(substr($base_uri, -1, 1) != '/') $base_uri .= '/';
}
else
{
$base_url = 'http://localhost/';
$base_uri = '/';
}
// Define these values to be used later on
define('BASE_URL', $base_url);
define('BASE_URI', $base_uri);
define('APPPATH_URI', BASE_URI.APPPATH);
// We dont need these variables any more
unset($base_uri, $base_url);
In your config.php you can simply use:
$config['base_url'] = BASE_URL;
This supports:
(Yes, that's the same list as the complex method).
This should get your app running pretty much anywhere you put it, but as of yet it does not support /~userdir URL's.