0

我目前使用 Dev Desktop 作为我的本地开发环境。一切正常,直到我将 ssl 代码片段输入到我的 ht 访问文件中,这是使网站 https 所需的。

# Redirect HTTP to HTTPS
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301

]

现在,当我尝试打开本地站点时,我收到以下错误:

SSL connection error
Hide details
Unable to make a secure connection to the server. This may be a problem with the server, or it may be requiring a client authentication certificate that you don't have.
Error code: ERR_SSL_PROTOCOL_ERROR

有谁知道如何解决这一问题?谢谢你。

亲切的问候,艾斯林

4

1 回答 1

0

我不相信 Dev Desktop 支持 SSL。

我认为你的选择是:

  • 删除 SSL 重定向并在没有它的情况下继续在本地工作
  • 使用不同的开发环境(如 XAMPP)并在那里配置 SSL
  • Acquia 为 drupal 提供免费的开发沙箱——我认为SSL 是受支持的。如果是这样,您可以在那里迁移和测试https://www.acquia.com/free
于 2015-03-18T20:19:15.447 回答