Tp5开启cookie和session安全传输secure和httponly

在配置文件 config.php 中设置如下:

// +----------------------------------------------------------------------
    // | 会话设置
    // +----------------------------------------------------------------------

    'session' => [
        'id' => '',
        // SESSION_ID的提交变量,解决flash上传跨域
        'var_session_id' => '',
        // SESSION 前缀
        'prefix' => 'think',
        // 驱动方式 支持redis memcache memcached
        'type' => '',
        // 是否自动开启 SESSION
        'auto_start' => false,
        //启用安全传输
        'secure' => true,
        // httponly设置
        'httponly' => true,
    ],

    // +----------------------------------------------------------------------
    // | Cookie设置
    // +-----------------------------------------------------------------
    原文作者:李维山
    原文地址: https://blog.csdn.net/msllws/article/details/107857106
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞