我最近在cloudflare上更改了我的域(example.com),使其指向旧IP(IP B)的新IP(IP A)。但是当我现在尝试访问IP B时,它会将我重定向到(example.com)。
我的旧服务器是使用CENT OS7和Apache的vultr,新服务器是使用Nginx的AWS。
<VirtualHost *:80>
DocumentRoot /var/www/html/pcbyte
ServerName localhost
ServerAlias www.example.com
<Directory /var/www/html/pcbyte>
Options FollowSymLinks
AllowOverride none
<RequireAll>
Require all granted
Require not ip xxx.xxx.xxx.xx
Require not ip xx.xxx.xxx.xxx
</RequireAll>
</Directory>
ErrorLog "|/usr/sbin/rotatelogs /var/www/html/pcbyte/logs/error_log%Y%m%d.log 86400 480"
CustomLog "|/usr/sbin/rotatelogs /var/www/html/pcbyte/logs/access_log%Y%m%d.log 86400 480" combined
</VirtualHost>
我希望访问IP B可以访问IP B的内容,但它会将我重定向到IP A的内容,并且URL从IP B更改为example.com
正在访问IP A显示正确的内容,但URL仍为IP A,应显示example.com
访问IP B的网址的期望不应与example.com现在显示的一样。