我在以下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