Answers for "wordpress force https redirect"

CSS
1

wordpress stop redirect to https

// add this to the bottom of your wp-config.php
define('FORCE_SSL_ADMIN', false);
Posted by: Guest on July-22-2021
0

wordpress force https

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
Posted by: Guest on January-02-2021

Code answers related to "wordpress force https redirect"

Browse Popular Code Answers by Language