“Przekierowanie administratora WordPress do HTTP” Kod odpowiedzi

WP-Admin przekierowywania do WordPress HTTPS

So if you are having this issue only when you go to ../wp-admin then it is 
because you have force ssl admin set to true. You can find this in 
wp-config.php in the root of your WordPress site, you need to set this option 
to false.

define('FORCE_SSL_ADMIN', false);

I am assuming your siteurl in the wp_options table in the WordPressdatabase is 
set to a http:// address.
Lokesh003Coding

Przekierowanie administratora WordPress do HTTP

//Add following line at the end of the wp-config.php file:

// Option 1:
define('FORCE_SSL_ADMIN', true);

//If that doesn't work then try Option 2:
$_SERVER['HTTPS']='on';
Puzzled Porcupine

Odpowiedzi podobne do “Przekierowanie administratora WordPress do HTTP”

Pytania podobne do “Przekierowanie administratora WordPress do HTTP”

Więcej pokrewnych odpowiedzi na “Przekierowanie administratora WordPress do HTTP” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu