Internally, we get to it via "https://intranet.ourcompany.com" and externally, our sister and parent companies get to it through "https://intranet.parentcompany.com". People outside were unable to get anywhere beyond the homepage, but this was solved by changing the config file to say:
Code: Select all
$config['root_url'] = '.';
$config['uploads_url'] = '.uploads';
$config['image_uploads_url'] = '.uploads/images';We're going to try to get everyone (internally and externally) to resolve through https://intranet.parentcompany.com so that I could change the config file to:
Code: Select all
$config['root_url'] = 'https://intranet.parentcompany.com';
$config['uploads_url'] = 'https://intranet.parentcompany.com/uploads';
$config['image_uploads_url'] = 'https://intranet.parentcompany.com/uploads/images';Also, I tried a bunch of things with $config['admin_dir'] = 'admin'; - I changed it to '.', './', '../', and others to no avail.

