-
Hello, ['session' => ['except' => ['login*', 'register*']]], to doesn't send the login page, provides home page |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
/**
* List of filter aliases that are always
* applied before and after every request.
*
* @var array
*/
public $globals = [
'before' => [
// 'honeypot',
// 'csrf',
// 'invalidchars',
'session' => ['except' => ['login*', 'register', 'auth/a/*']],
],
'after' => [
'toolbar',
// 'honeypot',
// 'secureheaders',
],
]; Now if you see What do you mean, can you explain clearly? |
Beta Was this translation helpful? Give feedback.
$globals in \App\Config\filters.php
Now if you see
http://localhost:8080/
you sh…