Jump to content

Recommended Posts

so I have the following .htaccess file

 

RewriteEngine on

Options All -Indexes

RewriteCond %{HTTP_HOST} ^growandcreate\.com$
RewriteRule ^(.*)$ http://www.growandcreate.com/$0 [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^caller.php$
RewriteCond %{REQUEST_FILENAME} !^page-machine.php$
RewriteRule ^(.*)$ caller.php [L]

 

I have a file called session_destroy.php that I call that does as it says.  I have another that is session_display.php that does as it says.

 

they have the following code

<?php

session_start();

var_dump($_SESSION);

?>

<?php

session_start();

$_SESSION = array();

$_SESSION['initiated'] = true;

var_dump($_SESSION);

echo "Session destroyed";

?>

 

I call the session_destroy directly and I call the session_display directly right afterwards.  the file caller.php somehow gets called somewhere in there because it puts other variables into the session variable.  placing a var_dump in caller does not show anything either

 

any ideas?  :wtf:

Link to comment
https://forums.phpfreaks.com/topic/189065-htaccess-issues/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.