How to write session for both www. and non-www ver

2020-02-14 08:14发布

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?

标签: php session
2条回答
该账号已被封号
2楼-- · 2020-02-14 08:46

session_set_cookie_params("$lifetime","$path","$domain","$secure","$httponly") is the best one in php language for setting session in both www and non-www url

查看更多
家丑人穷心不美
3楼-- · 2020-02-14 08:52

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

查看更多
登录 后发表回答