phpstudy 安装Apache SSL证书实现https连接
1、首先申请免费的ssl证书,很多地方都可以申请。我是在腾讯云!如图

3、打开PHPstudy php扩展设置,在php_openssl上点击打钩。说明就打开了!如图


5、如图在Apache/conf环境下新建箪滹埘麽vhostssl.conf文件;写入如下:Listen 443<VirtualHost *:443媪青怍牙> DocumentRoot "C:\myphp_www\PHPTutorial\WWW" ServerName www.test.com ServerAlias test.com SSLEngine on SSLProtocol TLSv1 TLSv1.1 TLSv1.2 SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5 SSLCertificateFile "C:\myphp_www\PHPTutorial\Apache\cert\2_www.test.com.crt" SSLCertificateKeyFile "C:\myphp_www\PHPTutorial\Apache\cert\3_www.test.com.key" SSLCertificateChainFile "C:\myphp_www\PHPTutorial\Apache\cert\1_root_bundle.crt"<Directory "C:\myphp_www\PHPTutorial\WWW"> Options +Indexes +FollowSymLinks +ExecCGI AllowOverride All Order allow,deny Allow from all Require all granted </Directory></VirtualHost>其中SSLCertificateFile 是指证书公钥SSLCertificateKeyFile 是指证书私钥SSLCertificateChainFile上面3个就是分别对应ssl证书放置的位置,请看下一步说明。DocumentRoot "C:\myphp_www\PHPTutorial\WWW"这是网站路径根据自己的,这是只是完成一半如果启动成功,那你就可以使用了 如果不成功请继续往下看


8、细节配置;防火锤渭浮舟墙不要拦截443端口;最后在.htaccess里加入 实现http转跳到https上下列代码修改自己域名<IfModule mo颊俄岿髭d_rewrite.c>RewriteEngine OnRewriteBase /RewriteCond %{SERVER_PORT} 80RewriteRule ^(.*)$ https://www.chu.mn/$1 [R=301,L]</IfModule>