Я думаю, что вы можете сослаться, вот ссылка для вашей справки:
https://github.com/oliguo/Server-Deployment/blob/master/XAMPP.md#virtual -host-setup
Включить vhosts.conf в etc / httpd .conf
Include etc/extra/httpd-vhosts.conf
Добавьте еще один порт, на который будет указывать ваш другой wordpress.
#like website
listen 80
#like another website
listen 81
Затем отредактируйте vhosts.conf в etc / extra / httpd-vhosts.conf
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot /opt/lampp/htdocs/website_a
ErrorLog "/opt/lampp/htdocs/website_a/error_log"
</VirtualHost>
NameVirtualHost *:81
<VirtualHost *:81>
DocumentRoot /opt/lampp/htdocs/website_b
ErrorLog "/opt/lampp/htdocs/website_b/error_log"
</VirtualHost>
Затем перезапустите xampp.