0
我試圖使用笨:重定向和錯誤404
// setting up flashdata
//...
// do a redirect
redirect('/', 'location', 404);
因此,用戶會被重定向到主頁與flashdata消息執行與笨重定向。
但它不工作,並給了我一個空白頁
我試圖使用笨:重定向和錯誤404
// setting up flashdata
//...
// do a redirect
redirect('/', 'location', 404);
因此,用戶會被重定向到主頁與flashdata消息執行與笨重定向。
但它不工作,並給了我一個空白頁
的第三個參數必須是一個301或302
您將需要設置一個flashdata參數要記住,最後一頁視圖是在狀態代碼設置爲404的指數控制器/行動404然後:
$this->output->set_status_header(404, 'Not Found');
所以,只要使用普通的網頁重定向:
redirect();