コードイグナイターには機能があり、base_url()
<?php echo base_url('/file')?>
絶対URLを出力し、
Opencart に相当するものはありますか?
header.php コントローラ ファイルを調べます
if (isset($this->request->server['HTTPS']) && (($this->request->server['HTTPS'] == 'on') || ($this->request->server['HTTPS'] == '1'))) {
$this->data['base'] = $this->config->get('config_ssl');
} else {
$this->data['base'] = $this->config->get('config_url');
}
テンプレートファイルから以下を呼び出すだけです。
<?php echo $base; ?>