I am struggerling with the Session:
When I call https://example.com/index.php/objects/index/260 I get this:
Array ( [__ci_last_regenerate] => 1614171352)
When I call https://example.com/objects/index/120
Array ( [__ci_last_regenerate] => 1614171373)
So, two different sessions! Why do I get an additional session here?
Is this related to the htaccess file?
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L,QSA]
Bests, yab86