php:仅使用 cookies 不起作用
我通过 ini_set("session.use_only_cookies", "1");
更改设置,ini_get 返回正确的值。 但似乎没有什么区别,sessionID 仍然被添加到页面的 URL 中。
可能出什么问题了?
php版本是4.4.9
编辑: 添加这一行
ini_set ('url_rewriter.tags', '');
在 session_start();
之前
解决了它!谢谢你们!
I change the settings by ini_set("session.use_only_cookies", "1");
and ini_get returns the right value.
But it seems to make no difference, the sessionID is still added to the URLs on the page.
What could be wrong?
php version is 4.4.9
edit:
Adding the line
ini_set ('url_rewriter.tags', '');
before session_start();
solved it!
Thanks guys!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 http://es.php.net/manual/en/ini.list .php,在您的 php 版本中,可以在
PHP_INI_PERDIR
处更改session.use_trans_sid
。根据 http://es.php.net/manual/en/configuration .changes.modes.php、PHP_INI_PERDIR
,您只能在php.ini
、httpd.conf
或.htaccess
,但不是通过ini_set()
。因此,尝试使用以下行在 PHP 应用程序的根目录中创建一个
.htaccess
文件(如果您使用的是 apache):顺便说一句,请考虑升级到较新版本的 PHP。 PHP 4.x 已经被放弃(没有获得安全更新)有一段时间了。
According to http://es.php.net/manual/en/ini.list.php, in your php version,
session.use_trans_sid
could be changed atPHP_INI_PERDIR
. According to http://es.php.net/manual/en/configuration.changes.modes.php,PHP_INI_PERDIR
, you may change values only atphp.ini
,httpd.conf
or.htaccess
, but not viaini_set()
.So, try to create a
.htaccess
file in the root of your PHP application with this line(if you are using apache):BTW, consider upgrading to a newer version of PHP. PHP 4.x has been abandoned (not getting security updates) for a while now.