这是情况。
我正在将vhost文件中的URL更改为新的URL。
然后,我重新启动服务器,但是以某种方式新的URL不起作用,而旧的URL起作用。
我正在运行的linux是Centos。
这是旧的虚拟主机文件:
<VirtualHost *:80>
ServerName test.com
ServerAlias www.test.com
DocumentRoot /var/www/test
HostnameLookups Off
UseCanonicalName Off
ServerSignature Off
<Directory "var/www/test">
AllowOverride All
Options +ExecCGI
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
这是新的虚拟主机文件:
<VirtualHost *:80>
ServerName test-new.com
ServerAlias www.test-new.com
DocumentRoot /var/www/test
HostnameLookups Off
UseCanonicalName Off
ServerSignature Off
<Directory "var/www/test">
AllowOverride All
Options +ExecCGI
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
我是否缺少确保更改生效的步骤?
谢谢你, 凯文·戴维斯