在base_url之外的代码点火器中定义全局路径

时间:2015-01-22 08:43:51

标签: php codeigniter

如何在codeigniter中定义除base-url之外的另一个全局路径 我的base url就像localhost/folder_name一样 虽然我想使用另一条路径,如

localhost/another_folder/

2 个答案:

答案 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');

我认为这会根据您的要求帮助您