PDA

View Full Version : 1 cookie 2 urls


Alzeimer
03-17-2004, 09:42 PM
Hi, I have 2 urls for the same forum
1st URL: www.centralrock.info (redirection)
2nd URL: www.tv-digital.info/board (the forum)

When I enter from the 1st url the forum can?t remember me, what can I do?

Thanks.

AlexanderT
03-18-2004, 06:05 AM
Cookies only work with one URL, nothing you can do about it.

I suggest you make a perm redirect from www.centralrock.info to www.tv-digital.info/board, BEFORE the forum is loaded. You could do this with a mod-rewrite in .htaccess:

RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.centralrock.info$
RewriteRule ^(.*)$ http://www.centralrock.info/board/$1 [R=permanent,L]