Wordpress host IP changed

前端 未结 7 1486
抹茶落季
抹茶落季 2020-12-08 00:32

I\'ve got a Wordpress site on our home intranet that has run into trouble now that the IP address has changed - The index page loads, but not the CSS and I can\'t log in to

7条回答
  •  执笔经年
    2020-12-08 01:17

    Be careful for the link: https or http !!

    in the command line:

    mysql -u root -p
    

    in the SQL, set new IP for xxxx

    mysql> use wordpress;

    mysql> select * from wp_options where option_id=1;

    mysql> update wp_options set option_value="http://xxxx" where option_id=1; exit

    Restart server

提交回复
热议问题