我没有使用重定向,但即使我的页面也会自动重定向到主页。控制器页面:
//print_r($data);
$orderid = $this->Order_model->insert_order_detail();
if($orderid){
if ($cart = $this->cart->contents()){
foreach ($cart as $item):
$order_detail = array(
'order_id' => $orderid,
'product_id' => $item['id'],
'order_qty' => $item['qty']
);
$order_data = $this->Order_model->insert_order_data($order_detail);
endforeach;
}
}
$enscryptorder = $this->encryption->encrypt($orderid);
redirect('billing/payment_mode');
//-------herer page is redirecting to base not to billing controller
答案 0 :(得分:0)
您可以尝试此操作,在自动加载配置中添加URL帮助程序。之后它可能适合你。 感谢