406. The session identifier is missing – After Forcing SSL
-
Using WordPress Social Login 2.3.0
I recently installed an SSL certificate on my WordPress site and have also applied some changes to my .htaccess file to force a redirect to https.
Added config:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.website.com/$1 [R,L]
</IfModule>However after adding this change to my .htaccess file, I’m getting the 506 error
WordPress Social Login Endpoint.
406. The session identifier is missing.I made sure I changed the redirect to https in the plugin’s setting as well.
Any ideas on what I can do to fix this?
- The topic ‘406. The session identifier is missing – After Forcing SSL’ is closed to new replies.