in reply to Redirecting to HTTPS
On the off chance that you're using Apache and can edit /etc/httpd/conf/httd.conf (or the equivalent), something like the following might work:
RewriteEngine on RewriteRule (.*) https://%{HTTP_HOST}$1 [R]
You might get by with putting this in a top-level .htaccess, though this might also require adding
Options FollowSymLinks
(At least that worked once for me, after wresting with a cryptic error message.)
|
|---|