更改了wordpress URL,现在无法访问

时间:2016-09-29 15:50:23

标签: php wordpress admin

我第一次使用WordPress时,我被要求进行一些更改,因此我进行了一些更改,并且重定向出现问题,因此我转到管理页面中的设置并更改了WordPress URL。我一保存,就把它记录下来,我无法访问该网站。 我所拥有的只是管理员用户名和密码。 有什么方法可以访问WordPress URL并将其更改回来吗? 例如,它是“website.com”,我将其更改为“website.com/home-3”

2 个答案:

答案 0 :(得分:0)

试试这个:

找到相关网站的IP地址。您可以在此处执行此操作:https://www.site24x7.com/ping-test.html

在结果屏幕中,它会显示网站的IP地址。

现在,您需要将此IP地址以及您更改URL的任何内容添加到计算机的hosts文件中。像这样的一条线可能是:

12.123.123.123 www.mistake.com

其中12.123.123.123是您在上面的步骤1中找到的IP地址。保存主机文件。

以下是编辑主机文件的指南,具体取决于您使用的操作系统:

http://www.howtogeek.com/howto/27350/beginner-geek-how-to-edit-your-hosts-file/

执行此操作后,您应该能够返回到您网站的wp-admin地址并修复该错误。您可能需要刷新几次,以便计算机获取您对hosts文件所做的更改。如果您使用的是Windows,则可以从命令行运行ipconfig / flushdns,这样可以加快速度。我确信在MacOS中有类似的东西

答案 1 :(得分:0)

@Hamza if you are still locked out, here is a good way to resolve this.

If you have admin access to the site via FTP, this method will help you quickly get a site back up and running.

  1. FTP to the server, and get a copy of the active theme's functions.php file. You're going to edit it in a simple text editor and upload it back to the site.

  2. Add these two lines to the file (use your own URL or IP instead of example.com, obviously), immediately after the initial php line.

update_option( 'siteurl', 'http://example.com' );

update_option( 'home', 'http://example.com' );

  1. Upload the file back to your site, in the same location.

  2. Load the login or admin page a couple of times. The site should come back up.