如何在codeigniter中定义除base-url之外的另一个全局路径
我的base url
就像localhost/folder_name
一样
虽然我想使用另一条路径,如
localhost/another_folder/
答案 0 :(得分:3)
您还可以在Codeigniter中设置global path
base_url
,例如global variable
,
您可以在global path
文件中定义application/config/constants.php
,例如:
define("globel_variable","http://localhost/my_site");
所有页面均可访问,即; controllers, models and views
要显示全局值,
echo globel_variable;
答案 1 :(得分:0)
在配置文件中定义
$config['variable']= 'your path'
就像
一样使用它$this->config->item('variable');
我认为这会根据您的要求帮助您