1

所以,我的任务是把我教会的网站从一些小公司的 cms 转移到 wordpress。创建站点并将其上传到服务器后(当然是先删除 httpdocs 文件夹中的所有旧文件),当转到http://tabernaklet.no时,旧站点仍然显示。

.htaccess 文件如下:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

我尝试创建一个指向与根域相同的文件夹的子域,并且它不会重定向。此外,我尝试禁用该站点的 DNS 名称服务器,但还是一样。该服务器运行 Parallels Plesk Panel 11.0.9,由http://dataguard.no托管。

我必须做什么才能使域将用户发送到正确的页面?

4

1 回答 1

0

Your DNS server is resolving the domain to the wrong IP. You said your web host is dataguard.no but your domain resolves to an IP owned by servetheworld.net. Change your domain name's DNS servers to the ones provided by your web host. Note that these changes will take a few hours to propagate.

于 2013-10-02T18:16:58.347 回答