洛基。
您可以尝试以下方法:
- make sure the values changed in database
如果您无法登录到wp admin>settings来确认,您可以转到数据库、wp\\u options表并查找siteurl和home值
- add code to wp-config.php
将这些行添加到wp config。php
define(\'WP_HOME\',\'http://example.com\');
define(\'WP_SITEURL\',\'http://example.com\');
- Clear your cache
确保从正在使用的任何缓存插件以及浏览器中清除缓存
还可以尝试将其添加到wp config。php(注“假”)
define( \'WP_CACHE\', false );
- check https / ssl related plugins
您可能正在使用导致此问题的任何插件,如ssl不安全内容修复程序等。
- Cloudflare or other dns side redirect
确保站点未使用任何基于dns的重定向
disable all plugins and confirm
change theme to default and check
Let me know any issues with this