Computer Systems Manager. I'm Senior IT Technical Senior Analyst Specialist focused professional with 15 years experience providing rapid client focused technical support to more than 4000 users. Demonstrate capacity to identify root causes and direct users to lasting resolutions. Well versed in variety of common operating systems, applications, and hardware with a proven ability to master new tools and technologies quickly. Outstanding interpersonal strengths illustrated by multiple service awards.
Follow Me
After adding an SSL certificate to your domain (eg: yourdomaine.com). You can force all visitors of your website to use secure connection (HTTPS) through two steps described here-under:
1) Make sure that mod_rewrite Apache module is enabled
Answer ( 1 )
After adding an SSL certificate to your domain (eg: yourdomaine.com). You can force all visitors of your website to use secure connection (HTTPS) through two steps described here-under:
1) Make sure that mod_rewrite Apache module is enabled
# httpd -t -D DUMP_MODULES | grep rewrite
Syntax OK
rewrite_module (shared)
2) Go to Plesk > Domains > select yourdomain.com > then select Apache $ ngins settings > sdd the code below to Additional directives for HTTP :
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R,QSA]
</IfModule>