Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
787 views
in Technique[技术] by (71.8m points)

php - How to write session for both www. and non-www version of my domain?

I'm writing session on mydomain.com/login.php I believe this can't be accessed in www.mydomain.com. Is that right?

How can I write to $_SESSION so I can access it from both the www. and non-www version of my domain?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

have a look at session_set_cookie_params it explains setting . in the domain will allows for access to subdomains as well,

Cookie domain, for example 'www.php.net'. To make cookies visible on all 
subdomains then the domain must be prefixed with a dot like '.php.net'.

miki has an example

http://www.php.net/manual/en/function.session-set-cookie-params.php#94961


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...