当我将计算机升级到Windows 10时,我收到了Xampp的错误,它说我的80端口正在监听4 pid。我无法找到合适的服务。我搜索了很多网站,但我在互联网上看到的每项服务都已经在我的电脑上关闭了。所以我不得不将我的端口更改为localhost:8080。但此时我无法管理虚拟主机的工作。任何形式的帮助提前谢谢你。这里我的一些文件与问题有关:httpd.conf,httpd-vhosts.conf,httpd-ssl.conf和hosts
httpd.conf:
Listen 8080
httpd-vhosts.conf:
##ABC
NameVirtualHost *:8080
<VirtualHost *:8080>
DocumentRoot D:\xampp\htdocs\abc
ServerName abc.local
ErrorLog D:\xampp/apache/logs/fiori-error_log
CustomLog D:\xampp/apache/logs/fiori-access_log common
<Directory "D:\xampp\htdocs\abc">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
httpd-ssl.conf:
Listen 443
主持人:
127.0.0.1 localhost
127.0.0.1:8080 abc.local
答案 0 :(得分:2)
您是否尝试在浏览器中访问localhost:8080
?
请使用此网址
abc.local:8080
主持人:
127.0.0.1 abc.local
希望能帮到你。