php不根据url请求控制器,php – 如何从根URL重定向到codeigniter中的控制器?

我在以下URL下有主视图:

http://wifi.pocc.cnst.com/cnst/#/mapboard/

| root |cntrl| view |

我的目标是当用户在浏览器中输入时:http://wifi.pocc.cnst.com自动重定向到http://wifi.pocc.cnst.com/cnst/#/mapboard/

我怎样才能做到这一点?

谢谢,

解决方法:

您可能知道请求到控制器的映射是

HTTP://your.domain/index.php/controller/method/arg1/../argn

而没有给出控制器/方法/ args段的任何请求都被路由到默认控制器.

默认控制器在application / config / routes.php中定义,您必须按如下方式更改它:

$route['default_controller'] = "my_default_controller";

其中my_default_controller显然是您必须设置的控制器,其中您设置:

public function index()

{

$this->load->helper('url'); // might actually not be needed

redirect('cnst/#/mapboard');

}

如果您使用默认控制器进行其他操作,您可以考虑:

public function index()

{

if ($this->input->server('Request_uri') == '/' and $this->input->server('Http_host') == 'my-host')

{

$this->load->helper('url'); // might actually not be needed

redirect('cnst/#/mapboard');

}

// your other stuff

}

或者您可能实际在routes.php配置文件中设置了不同的默认控制器:

if ($_SERVER['REQUEST_URI']) == '/' and isset($_SERVER['HTTP_HOST']) and $_SERVER['HTTP_HOST'] == 'my-host')

{

$route['default_controller'] = 'my_special_controller';

}

else

{

$route['default_controller'] = 'my_normal_controller';

}

瞧.

标签:php,codeigniter

来源: https://codeday.me/bug/20190624/1280106.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值