这是我的项目在会话中设置的服务器public_html / lushhire值的路径,但页面没有重定向到仪表板
if ($this->session->userdata('logged_in')) {
redirect(base_url('Dashboard'));
exit;
}
Site link
http://lushhire.home-arc.com/
的.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond $1 ^(application|system|private|logs)
RewriteRule ^(.*)$ index.php/access_denied/$1 [PT,L]
RewriteCond $1
^(index\.php|robots\.txt|favicon\.ico|public|assets|css|js|images)
RewriteRule ^(.*)$ - [PT,L]
RewriteRule ^(.*)$ index.php/$1 [PT,L]
</IfModule>