WordPress修改URL地址的方法

一、命令行(通过SSH)

mysql -u root -p

#以root用户登录

 

mysql> use wordpress

#选择数据库wordpress,选择哪一个数据库要依据具体情况而定。

 

mysql> update lina_options set option_value=’http://192.168.1.123/linax’ where option_name=’siteurl’;

mysql> update lina_options set option_value=’http://192.168.1.123/linax’ where option_name=’home’;

#以上两个命令用于修改siteurl和home值,其中lina_options前缀lina是设定值,要依据具体情况而定。

 

二、内网使用phpmyadmin解决(通过浏览器)

http://192.168.1.123/phpmyadmin

找到lina_options的siteurl和home值直接修改

你可能感兴趣的:(网站建设)