Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我没有登录并且正在查看我的主页(本地主机)时,我会自动被重定向到登录页面。这是正常的吗?我能做些什么呢..
您的主页可能未设置为公开。在您的控制器中beforeFilter(),您可以这样设置它。例如:
beforeFilter()
$this->Auth->allow('index');
将使index所有用户都可以查看您的操作,无论他们是否已登录。
index