第一步:修改apache目录下的httpd.conf配置文件
#LoadModule ssl_module modules/mod_ssl.so删除行首的配置语句注释符号“#”增加一条引用语句 Include conf/vhost-ssl.conf
第二步:
1、在conf文件夹中创建一个vhost-ssl.conf配置文件。
2、编辑vhost-ssl.conf文件,增加如下内容:
Listen 443SSLEngine onSSLProtocol all -SSLv2 -SSLv3SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5SSLCertificateFile “D:\phpStudy\Apache\conf\ssl\www.22.cn.crt” //服务器证书SSLCertificateKeyFile “D:\phpStudy\Apache\conf\ssl\private.key” //证书私钥SSLCertificateChainFile “D:\phpStudy\Apache\conf\ssl\ca.crt” //根证书DocumentRoot “D:\phpStudy\WWW”Options +Indexes +FollowSymLinks +ExecCGIAllowOverride AllOrder allow,denyAllow from allRequire all granted
3.phpstudy配置指定路径访问https(仅供参考)。
RewriteEngine onRewriteCond %{REQUEST_URI} /homeworkRewriteRule^(.*)?$ https://%{SERVER_NAME}$1[L,R]
4、保存退出,并重启Apache, 若有报错或者无法正常启动,请看错误日志。