博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Apache搭建http网站服务器入门教程
阅读量:5088 次
发布时间:2019-06-13

本文共 883 字,大约阅读时间需要 2 分钟。

Apache搭建http网站服务器入门教程

准备工具

  • 一台带有Linux系统的主机,这里使用CentOS 7.1 64位系统
  • 一个备案过的域名,这里使用www.hellopage.cn
  • 一台可以访问网络的pc,这里使用的Win7_pro_sp1

步骤

1.解析域名

在域名管理控制台添加对主机ip的解析,如下图

926430-20160416112125051-1968036936.png

926430-20160416112134363-1608528813.png

2.Apache安装

启动CentOS系统,安装httpd

# yum install httpd

3.配置Apache环境

# vim /etc/httpd/conf/httpd.conf

添加如下代码至文件末尾

926430-20160416112142598-444151178.png

同时修改文件的以下部分,来修改默认的主目录

926430-20160416112723988-214235413.png

同时别忘了创建此目录,否则会报错

# cd /var/www/html# mkdir hellopage

最后重新启动httpd

# /bin/systemctl start httpd.service

4.测试

1.打开浏览器,输入www.hellopage.cn,若出现如下页面,则建立成功

Testing 123..    This page is used to test the proper operation of the Apache HTTP server after it has been installed. If you can read this page it means that this site is working properly. This server is powered by CentOS.

2.在刚刚创建的/var/www/html/hellopage/下创建html

# cd /var/www/html/hellopage/# touch index.html# vim index.html

添加如下代码

    God Sacred    

hello world!

3.重新登录网站www.hellopage.cn

926430-20160416112204191-265968186.png

转载于:https://www.cnblogs.com/ScratchingBear/p/5397940.html

你可能感兴趣的文章
a 标签中调用js的几种方法
查看>>
从SQL Server 2005 中 导入 导出 excel 表格
查看>>
R Shiny(开源的R包)
查看>>
用Tensorflow做蝴蝶检测
查看>>
Hbuilder编辑器 设置less即时编译环境
查看>>
【2.2】创建博客文章模型
查看>>
【3.1】Cookiecutter安装和使用
查看>>
【2.3】初始Django Shell
查看>>
Linux(Centos)之安装Redis及注意事项
查看>>
VC(VISUAL_C++)虚拟键VK值列表
查看>>
《风笛》-林白
查看>>
Android 网络请求框架Retrofit
查看>>
GeoServer手动发布本地Shapefile地图
查看>>
KMP之我见
查看>>
BZOJ1119[POI2009]SLO && BZOJ1697[Usaco2007 Feb]Cow Sorting牛排序
查看>>
Django组件——分页器和中间件
查看>>
scala 14 trait
查看>>
You need to run build with JDK or have tools.jar问题解决
查看>>
BZOJ 1030: [JSOI2007]文本生成器 [AC自动机 DP]
查看>>
HDU 3949 XOR [高斯消元XOR 线性基]
查看>>