Table des matières

Wordpress

Liens utils

https://codex.wordpress.org/Administration_Over_SSL https://codex.wordpress.org/Function_Reference/WP_Rewrite https://fr.wordpress.org/plugins/velvet-blues-update-urls/

Configuration

Forcer https pour l'admin

# vim $( find -name wp-config.php )
define('FORCE_SSL_ADMIN', true);

Forcer https le site

# vim $( find -name wp-config.php )
$_SERVER['HTTPS']='on';