HTTPS redirection code for htaccess


/*Total website redirect to HTTPS*/

ExpiresActive On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]


/*Redirect specific page to HTTPS*/

ExpiresActive On
RewriteCond %{SERVER_PORT} 80
RewriteCond %{HTTPS} !=on [NC]
RewriteCond %{REQUEST_URI} /page_path/
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s