CodeIgniter 社区身份验证重定向

CodeIgniter Community Auth redirect

我已经安装了 Community Auth,但经过几个小时的尝试和错误后,我仍然无法让它工作! 问题是在创建测试用户并尝试登录后,我被重定向到一个无意义的 url。 假设我的测试站点位于 http://test.webintenerife.com。在这里我放了一个应用程序来测试 Community Auth。我遵循了所有安装步骤并成功创建了我的测试用户。

我的配置 base_url 是 'test.webintenerife.com'。尝试在 http://test.webintenerife.com/Examples/login 登录,但重定向 url 是 http://test.webintenerife.com/Examples/test.webintenerife.com/test.webintenerife.com/login?redirect=Examples/simple_verification

我的 .htaccess 是:

`    #MAKE SURE TO LEAVE THE NEXT TWO LINES HERE.
#BEGIN DENY LIST --
#END DENY LIST --
DirectoryIndex index.php
#Rewrite engine
RewriteEngine On
#condition with escaping special chars
RewriteCond  !^(index\.php|admin|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php? [L,QSA]`

我真的不明白我做错了什么...

我的base_url错了,因为这是我第一次使用CI。它应该是'http://test.webintenerife.com/':-(