Skip to content

Instantly share code, notes, and snippets.

View imAjaypal's full-sized avatar

Ajay Pal imAjaypal

View GitHub Profile
@imAjaypal
imAjaypal / config.php
Last active March 18, 2022 08:03
Dynamic Base URL (base_url) in Codeigniter
//Dynamic Base URL (base_url) in Codeigniter
$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']);