Hi Kerio
I was thinking about this, and thought you could use the following, which redirects back to http (unsecure) website. You could add it as a hook to automate it, but it is based on the server domain name SSL (which must first exist as siteworx account) and you ned to replace the following with your own correct information
IP-ADDRESS ip address of your shared server for hosting
SITEWORX-ACCOUNT.DOMAIN your siteworx account domain (not server siteworx name)
server-Unix-name your siteworx unix name
server-domain.name your server domain name (not your siteworx domain name)
This was only a quick 10 minute fix, tested partially so it correctly redirects back to non secure web site, and I am sure there is a better solution, or the code could be reduced, so please feel free to add too or change as you see fit, but I would ask if you do, if you could update this post.
I hope it helps a little
Many thanks
John
<VirtualHost IP-ADDRESS:443>
ServerName SITEWORX-ACCOUNT.DOMAIN
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1 [L,R=301]
SSLEngine on
SSLHonorCipherOrder On
SSLCACertificatePath /home/server-Unix-name/var/server-domain.name/ssl
SSLCertificateKeyFile /home/server-Unix-name/var/server-domain.name/ssl/server-domain.name.priv.key
SSLCertificateFile /home/server-Unix-name/var/server-domain.name/ssl/server-domain.name.crt
SSLCACertificateFile /home/server-Unix-name/var/server-domain.name/ssl/server-domain.name.chain.crt
SSLOptions +ExportCertData +StrictRequire
SetEnvIf User-Agent “.MSIE.” nokeepalive ssl-unclean-shutdown
</VirtualHost>