Last active
March 18, 2022 08:03
-
-
Save imAjaypal/bbcaf94a5b52395e6215f26f4157edef to your computer and use it in GitHub Desktop.
Dynamic Base URL (base_url) in Codeigniter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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']); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment