除了阿里官方的教程说明之外,还需要添加虚拟主机配置如下:
弄了半天总是是解决了
<VirtualHost *:443>
DocumentRot "网站路径"
ServerName www.xxxxx.com
<Directory "C:\phpStudy\PHPTutorial\WWW\youli">
Options FollowSymLinks ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
SSLEngine on
SSLCertificateFile 你的证书公钥路径
SSLCertificateKeyFile 你的证书私钥路径
SSLCipherSuite HIGH:!RC4:!MD5:!aNULL:!eNULL:!NULL:!DH:!EDH:!EXP:+MEDIUM
SSLHono<ipherOrder on
`
/VirtualHost>