有选择地为CakePHP中的某些操作启用SSL

前端之家收集整理的这篇文章主要介绍了有选择地为CakePHP中的某些操作启用SSL前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试为基于Cake PHP的网站上的某些操作启用SSL.我正在使用requireSecure()并在相应的blackHoleCallback()中重定向https://url.

为了减少服务器负载,我想在用户完成需要SSL的操作后重定向http://whatever_url.

我该怎么做呢?

所以这是我遇到的一个解决方案.我将以下代码片段添加到AppController中的beforeFilter():
if (!in_array($this->action,$this->Security->requireSecure) and env('HTTPS'))
    $this->_unforceSSL();

功能定义为:

function _unforceSSL() {
    $this->redirect('http://' . $_SERVER['SERVER_NAME'] . $this->here);
}
原文链接:https://www.f2er.com/php/130639.html

猜你在找的PHP相关文章