Going a little crazy over something which seems simple ...
I have a .htaccess file which sits in the root directory of my site just to switch off those pesky PHPSESSID's. They keep coming back though, particularly when I first reopen the browser and click on the first link.
<IfModule mod_php4.c>
php_flag session.use_trans_sid off
php_value arg_separator.input ;&
php_value arg_separator.output ;
</IfModule>
- on a hosted server with Apache and PHP 4.3.x with htaccess definitely enabled (I use it in password-protected directories).
What's wrong? How can I test it?