Redirecting to HTTPS on WordPress?
Redirecting to HTTPS on WordPress? - If a page has internal and external outgoing links to redirecting URLs, it’s returning 3xx (301, 302, etc.) HTTP status codes standing for redirection. This issue means that the page does not exist on a permanent or temporary basis. It appears on most of the popular web browsers, usually caused by a misconfigured website. However, there are some steps you can take to ensure the issue isn’t on your side. You can find more details about redirecting URLs by reading the Google Search Central overview. In this article, we’ll go over how you can fix the Redirecting to HTTPS on WordPress? error on your web browser. Problem :
Solution :
We hope that this article has helped you resolve the redirects, wordpress, https error in your web browsers. Enjoy browsing the internet uninterrupted!
I recently upgraded my site to SSL and I was wondering if I should force my traffic to HTTPS rather than leave access to HTTP?
If so how should I go about doing this on WordPress?
It is a good idea, but be warned, you may encounter many "mixed content" warnings where some content is loaded over http. This will happen with hard coded links to things like google fonts and images. If this happens, your page will be regarded as insecure.
Having said that, if you want to force to https add the following to your .htaccess file
RewriteEngine On
RewriteCond %SERVER_PORT 80
RewriteRule ^(.*)$ https://example.com/$1 [R=301,L]
Comments
Post a Comment