我已經安裝了社區身份驗證,但幾個小時的triels和錯誤後,我仍然無法讓它工作! 問題是,在創建測試用戶並嘗試登錄後,我重定向到非感知網址。 假設我的測試網站位於http://test.webintenerife.com。在這裏我已經安裝了一個應用程序來測試社區認證。我遵循所有安裝步驟,併成功創建了我的測試用戶。CodeIgniter社區身份驗證重定向
我的配置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 $1 !^(index\.php|admin|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php?$1 [L,QSA]`
我真不明白我在做什麼錯?