Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Theme not coming up with https
#2
Set the 'Website URL' (in admin 'Settings') to https://...

You can't easily have the website available to both http and https requests at the same time, so use https only (is my advice).

I don't know how the force-https plugin works, so you may need to change other links (e.g., in pages, template.php, css files, etc.) to https. I prefer to use this in the root .htaccess file:
Code:
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.domain.tld/$1 [R=301,L]

Add these lines immediately after the existing RewriteBase directive. Use your website address, of course.
--
Nick.
Reply


Messages In This Thread
Theme not coming up with https - by Didier9 - 2017-08-20, 21:26:54
RE: Theme not coming up with https - by hameau - 2017-08-20, 22:11:04



Users browsing this thread: 1 Guest(s)