wordpress后台登录自动SSL
wordpress 博客怎么在登录后台的时候自动使用SSL呢?其实非常的简单:
编辑 wp-config.php
找到如下在 if ( !defined(‘ABSPATH’) ) 的上面添加2行代码
/* 好了!请不要再继续编辑。请保存本文件。使用愉快! */
/* 后台SSL加密 */ define(‘FORCE_SSL_ADMIN’, true); //启用登录时使用ssl define(‘FORCE_SSL_LOGIN’, true); //后台管理也使用ssl,已被弃用 /** WordPress 目录的绝对路径。 */ if ( !defined(‘ABSPATH’) ) define(‘ABSPATH’, dirname(__FILE__) . ‘/’)
注:FORCE_SSL_LOGIN ,This function has been deprecated. Use force_ssl_admin() instead.
这样当你点击登录的时候,就会自己加载 https 了
代码文档参考:
https://developer.wordpress.org/reference/functions/force_ssl_admin/
https://developer.wordpress.org/reference/functions/force_ssl_login/