http 域名+ 端口号访问不了 端口已经开放
来源:4-4 Swoole - HTTP服务(上)
qq_浅笑安然_6
2018-09-19
<?php
$http = new swoole_http_server(".0.0.1",8811);
$http->on('request',function($request ,$response){
$response->end("<h1>HTTPserver</h1>");
});
NameVirtualHost *:80
<VirtualHost *:80>
ServerName yq.98in.cc
DocumentRoot /var/www/html
</VirtualHost>
老师,我虚拟主机是不是配错了啊
写回答
2回答
-
helloei
2018-09-20
你的ip地址少了个0啊
00 -
singwa
2018-09-20
有没有错误提示?
022018-09-22
相似问题