My project freezes on this one problem.
I have this code in my htaccess for implementing a flat URL system
Options +FollowSymlinks RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !^/page.php RewriteRule (.*) page.php?pid=$1 [QSA]
As long as this code exists, I cannot access the session variables created on one page on any other page. Even if the pages are static .php pages that fail redirection, sessions disappear. Only this code somehow prevents sessions.
I set the path and domain of the session cookie to make sure the scope is correct, but it does not work.
Any help would be appreciated from below my heart.
The funny thing is that it only fails in Chrome.
source share