Too many Redirect After Moving site to HTTPS from HTTP
-
What I have done:
1) Updated SQL script https://example.com with https://example.com by export and import.
2) Updated.htaccess
`
#BEGIN SSL
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R=301,L]
#END SSL
`
3) Updated Wp-config:
`
define(‘FORCE_SSL_ADMIN’, true);
define(‘RELOCATE’, TRUE);
$_SERVER[‘HTTPS’] = ‘on’;define(‘WP_HOME’, ‘https://example.com’);
define(‘WP_SITEURL’, ‘https://example.com’);
`
- This topic was modified 5 years, 5 months ago by .
- This topic was modified 5 years, 5 months ago by .
The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Too many Redirect After Moving site to HTTPS from HTTP’ is closed to new replies.