I am using a remote server to obtain pricing for an ecommerce site I put on SIGMA. It is the first time I setup SSL. So the vendor says I have to put the SSL files in the same folder as my HTML files. I always put my HTML files in th e /httpdocs directory and I though when I installed the secure certificate it would automatically go into the /httpsdocs folder. Do I have to do a mod rewrite to make apache act as if the files were all in one folder? Like add this to .htaccess
RewriteEngine On
RewriteCond %{SERVER_PORT} !443
RewriteRule (.*)
https://www.example.com/require-secure/ [R]
or
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
Thanks !!!