- A+
所属分类:技巧
wordpress无法登陆后台的解决办法
由于初学配置https,把后台WordPress地址(URL)和站点地址(URL)地址给改了,发现后台无法登陆,出现多次重定向的问题......
解决办法:
1. 使用SecureCRT等软件连接到你的服务器。
2. 登陆数据库。
mysql -uroot -p123456 -h127.0.0.1
3. 选中你当前使用的数据库
use test;
4. 先确认下数据库里面的值,以防修改错了还能改回来(●'◡'●)
mysql> select * from wp_options where option_name='siteurl';
mysql> select * from wp_options where option_name='home';
5. 将上面两个值修改为正确的值即可。
mysql> update wp_options set option_value= 'http://xxx.com' where option_name='siteurl';
mysql> update wp_options set option_value= 'http://xxx.com' where option_name='home';
6. 重新打开后台页面。