http to https

Solutions on MaxInterview for http to https by the best coders in the world

showing results for - "http to https"
Douglas
28 Jan 2018
1# .htaccess
2# WordPress Website von http zu https umziehen
3# Move WordPress website from http to https
4<IfModule mod_rewrite.c>
5RewriteEngine On
6RewriteCond %{HTTPS} !=on
7RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
8</IfModule>