我在XAMPP服务器上安装了SSL证书,当我将 httpd-ssl.conf 中的 DocumentRoot 更改为我的项目文件夹时,它可以正常工作,但是当我输入时http://localhost它将我重定向到https://localhost/xampp并且我遇到了错误。
所以我不会改变DocumentRoot,只是让SSL在实际的Root上工作。 我试图更改 httpd-vhost 文件,但它没有
答案 0 :(得分:0)
很有趣,我发誓我做到了。
进入httpd-vhost文件我复制了这样的东西:
<VirtualHost *:443>
ServerAdmin webmaster@localhost
DocumentRoot "C:/xampp/htdocs"
ServerName localhost
ServerAlias localhost
SSLEngine on
SSLCertificateFile "conf/ssl.crt/server.crt"
SSLCertificateKeyFile "conf/ssl.key/server.key"
##ErrorLog "logs/dummy-host.example.com-error.log"
##CustomLog "logs/dummy-host.example.com-access.log" common
</VirtualHost>
现在一切都很好。