CodeIgniter Ion Auth页面在auth文件夹之外

时间:2013-12-30 23:56:25

标签: php codeigniter ion-auth

我是CodeIgniter Ion Auth的新手,我想知道是否可以在auth文件夹之外添加页面?只有在用户登录时才能访问页面。我想要在auth文件夹之外的页面的主要原因是我想要删除URL中的“auth”。任何帮助将不胜感激。顺便说一句,我只尝试在auth文件夹中添加页面。谢谢!

1 个答案:

答案 0 :(得分:3)

简短的回答是,你可以。但如果原因只是删除URL中的“auth”,最简单的方法是使用路由设置(位于\application\config\routes.php文件中)

例如,如果设置;

$route['login'] = 'auth/login';

登录页面的URL将是;

http://yourdomain.com/index.php/login

您可以通过在codeigniter配置设置(\application\config\config.php)中添加网址后缀来更进一步

$config['url_suffix'] = '.html';

以便登录页面的URL为;

http://yourdomain.com/index.php/login.html

您甚至可以删除网址的/index.php部分。见this forum here