當我使用localhost/site_name打開網站時,url立即變爲localhost/site_name/default_controller_name。Cakephp url:隱藏主頁上的控制器名稱
我該如何隱藏它,以便只在該主要首頁上的url變爲localhost/site_name?
編輯這是頭版
public function index() {
$this->set('list', $this->User->Mobilenetwork->find('list', array(
'fields' => array('id', 'network')
)));
if($this->Auth->user())
{
$this->redirect(array('controller' => 'contacts', 'action' => 'index'));
}
if ($this->request->is('post'))
{
//saving data. this is a mess currently, i need to move majority of this code to the model
}
現在你的默認控制器是什麼?它是頁嗎?您是否將該操作添加到Auth允許的操作? – skywalker