怎么解决电脑Apache模块无效的问题
本文就来介绍一下怎么解决Win8系统XAMPP下Apache模块无效问题。
Win8下系统默认占用80端口,导致apache无法打开。
1.以管理员权限运行c:windowssystem32cmd.exe
C:WINDOWSsystem32》net stop http
HTTP Service 服务已成功停止。
C:WINDOWSsystem32》netstat -ano | findstr 0.0.0.0:80
C:WINDOWSsystem32》sc config http start=disabled
[SC] ChangeServiceConfig 成功
2...