wordpress修改了站点地址导致无法打开网站的解决办法
在wordpress后台的设置中改了wordpress地址和站点地址后导致网站无法打开,有两种解决办法。
方案一
在functions.php
中添加如下代码即可。
update_option("siteurl","http://ww.leevii.com");
update_option("home", "http://ww.leevii.com");
方案二
修改数据库wp_options
表中的siteurl
和home
的值为正确的站点地址即可。
update wp_options set option_value='https://www.leevii.com' where option_name='siteurl';
update wp_options set option_value='https://www.leevii.com' where option_name='home';
如果您觉得本文对您有用,欢迎捐赠或留言~
- 本博客所有文章除特别声明外,均可转载和分享,转载请注明出处!
- 本文地址:https://www.leevii.com/?p=558