SSL wordpress certificate

0

Good morning. I would like to learn how to configure the security certificate, in Wordpress. I greatly appreciate anyone who wants to show me how this process is done.

    
asked by user22090 06.04.2017 в 16:58
source

2 answers

1

From what I have seen, you already have the certificate installed and you are missing only the configuration part of the site, <meme de squirtle> vamo a responder</meme de squirtle>

Setting WordPress Admin SSL

You need to modify the file wp-config.php in the root of your project and add this line:

define('FORCE_SSL_ADMIN', true);

Now, to verify, you give it: link and check if it works with HTTPS.

If it does not work for you, remove that line immediately, there is something to fix first.

If everything works, go to log in, and check that you have the candadito on the side of the domain in the address bar: D

Plugin for SSL

Now, let's go for the theme, the plugins and the front-end calls that work as they should. We install link This allows you to force the use of SSL for a page and view possible errors (using DevTools from browsers, calls with F12) without interrupting users.

The way to use it is simple: load your website, give it an inspection element and look for security errors that mark you.

Finally, in the .htaccess

# Force HTTPS RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

Extracted from: link

    
answered by 06.04.2017 / 18:56
source
0

Hi, the first thing you should do is ask the administrator of your server (host) if you have it and if so, activate it. It is possible that you have some indication of the copy style, paste or nothing, without more. Afterwards it is easy to activate it looking at the internal options of the wordpress administrator panel; It's a button.

Also if you have linked the internal links of your page, etc. once you have it, google will not give you problems. In case you have everything activated and instead of the green padlock you will see an exclamation there are online tools like link that can make it happen.

greetings

    
answered by 06.04.2017 в 17:06