Windows、Apache、https

Windows、Apache、https

在我的主机文件(Windows)中我有这个:

127.0.0.1 testsite.hu

在我的 apache 配置中,我有:

<VirtualHost 127.0.0.1:80>
  DocumentRoot "C:\work"
  ServerName testsite.hu
  <Directory "C:\work">
    RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . index.php
    DirectoryIndex index.php
    DirectoryIndex index.html
  </Directory>
</VirtualHost>

如果我调用,这一切都会顺利进行:

testsite.hu
www.testsite.hu
http://www.testsite.hu

但不幸的是,当我以 https 调用时:

https://testsite.hu

Firefox 说她无法打开它。为什么?我不知道该如何处理 Apache

相关内容