Created
October 3, 2017 17:05
-
-
Save paulobunga/aceaec81476938c0eda1a730d080635f to your computer and use it in GitHub Desktop.
Automatically pick a base url for a codeIgniter project
This file contains 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
$config['base_url'] = 'https'; | |
$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