PHP CodeIgniter自动基本URL配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP CodeIgniter自动基本URL配置相关的知识,希望对你有一定的参考价值。

$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']);

以上是关于PHP CodeIgniter自动基本URL配置的主要内容,如果未能解决你的问题,请参考以下文章

为啥 CodeIgniter 将 /index.php/ 添加到所有 URL?

如何在 CodeIgniter 2.* 中获取基本 url

去掉CodeIgniter URL中的index.php

在 codeigniter 中设置基本 url

CodeIgniter 路由总是通过 index.php?

在 CodeIgniter 4.0.2 中设置动态基本 URL