【发布时间】:2010-12-15 07:50:17
【问题描述】:
在其中一个正在创建的网站中,需要使用 ssl。但我对此一无所知。我知道 ssl 用于安全站点。但是在开发中会有什么不同,我从哪里开始呢? 我看到了这个 http://php.net/manual/en/book.openssl.php 还有这个http://www.openssl.org/ 所以可以在不购买带有开放 ssl 的 ssl 的情况下做到这一点?
我猜你是这样检测的......
if (isset($_SERVER['HTTPS']) )
{
echo "SECURE: This page is being accessed through a secure connection.<br><br>";
}
else
{
echo "UNSECURE: This page is being access through an unsecure connection.<br><br>";
}
请告诉我从哪里开始以及我需要了解的基础知识。
【问题讨论】: