购物网站黑白,郑州高端建站,昊诺网站建设网络推广,fqapps com网站怎么做2021-1-20 Hyp 1.安装 http#xff0c;使用命令
yum install -y httpd2.重启http服务 关闭服务 httpd service stop启动服务 httpd service start重启服务 httpd service restart3.测试运行 使用浏览器访问localhost或者127.0.0.1 出现测试页面即服务启动成功
4.制作自己的…2021-1-20 Hyp 1.安装 http使用命令
yum install -y httpd2.重启http服务 关闭服务 httpd service stop启动服务 httpd service start重启服务 httpd service restart3.测试运行 使用浏览器访问localhost或者127.0.0.1 出现测试页面即服务启动成功
4.制作自己的测试网页在/var/www/html/ 目录下新建一个index.html文件 vim /var/www/html/index.html输入h1hello word/h1按esc qw保存退出
访问服务器 curl 127.0.0.1本地访问成功
5.配置apache
vim /etc/httpd/conf/httpd.conf #打开apache配置文件将servername注释 去掉编辑自己的配置
#ServerNamewww.exmpel.com :80
#修改为
ServerNamelocalhost:80