我正在使用xampp使用端口4433设置一些WordPress站点,我需要设置一个虚拟主机。
虚拟主机配置:
NameVirtualHost *:4433
<VirtualHost *:4433>
DocumentRoot "C:\xampp\htdocs"
ServerName localhost
</VirtualHost>
<VirtualHost *:4433>
DocumentRoot "C:\xampp\htdocs\cig-git"
ServerName cig.com
<Directory "C:\xampp\htdocs\cig-git">
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
主持文件:
127.0.0.1 localhost
127.0.0.1 cig.com
我将这些网站用作参考:https://www.wpwhitesecurity.com/wordpress-tips-webmasters/multiple-websites-xampp/和https://httpd.apache.org/docs/2.4/vhosts/examples.html
我已经重新启动了xampp Apache服务器,重新启动了Chrome,但该网站没有出现。当我加载cig.com网站使用域(而不是我的)加载。我不知道问题可能是什么。