Codeigniter 我们是否可以在具有ssl的站点中修复worldpay的握手错误?

Codeigniter 我们是否可以在具有ssl的站点中修复worldpay的握手错误?,codeigniter,ssl,https,handshake,worldpay,Codeigniter,Ssl,Https,Handshake,Worldpay,我有一个用ssl托管的codeigniter开发的站点。在WorldPay成功支付交易后,它不会返回到我们的网站,我们收到WorldPay的电子邮件说 Error reported: Callback to: https://my_site/controller/function: failed CAUSED BY Received fatal alert: handshake_failure. 我的.htaccess文件 RewriteEngine On RewriteCond %{REQ

我有一个用ssl托管的codeigniter开发的站点。在WorldPay成功支付交易后,它不会返回到我们的网站,我们收到WorldPay的电子邮件说

 Error reported: Callback to: https://my_site/controller/function: failed CAUSED BY Received fatal alert: handshake_failure.
我的.htaccess文件

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]