Codeigniter 有一个功能,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; ?>