文章目录
1.XShell
使用命令行工具连接目标CentOS服务器:
2.使用命令安装启动服务器
使用时注意不要复制注释(#符号后面)
powershell
yum install httpd #安装
systemctl start httpd #启动服务
systemctl enable httpd #开机启动
其它常用命令
powershell
systemctl start httpd #启动
systemctl stop httpd #停止
systemctl restart httpd #重启
systemctl enable httpd #开机启动
systemctl disable httpd #开机不启动
3.上传静态文件
推荐一个工具xftp,将本地静态文件包上传至路径
/var/www/html
注意:主页命名为index.html。
然后在浏览器输入对应的IP,即可看到网页,如果不行,就行重启一下服务:
powershell
systemctl restart httpd
4.配置文件
如果懂后台规则可以配置一下配置文件:
/etc/httpd/conf/httpd.conf
5.总结
使用apache可以快速搭建一个静态网页服务器,在前后端分离的技术框架下,使用起来效果不错。