跑网页

Posted atma

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了跑网页相关的知识,希望对你有一定的参考价值。

1.本地yum源安装:

[[email protected] ~]# mount /dev/sr0   /opt

写yum源配置文件:

[[email protected] ~]# cd  /etc/yum.repo.d/

[[email protected] ~]# vi dvd.repo

2.配置文件如下:

[dvd]
name=dvd
baseurl=file:///opt
gpgcheck=0

3.清除和查看:

[[email protected] ~]# yum clean all

[[email protected] ~]# yum list

 

4.安装httpd:

[[email protected] ~]# yum install httpd (安装httpd服务)

技术分享图片

[[email protected] ~]# systemctl restart httpd (启动httpd服务)

[[email protected] ~]# systemctl status httpd (查看启动状态)

技术分享图片

 

5.关闭防火墙:

[[email protected] ~]# iptables -F

[[email protected] ~]# iptables -X

[[email protected] ~]# setenforce 0

技术分享图片

 

最后结果如下:

技术分享图片

由于,首次配置httpd服务,所以,在浏览首页文件的时候,会跳至到/etc/httpd/conf.d/wlcom.conf文件,将此文件用网页的形式显示到屏幕。如果想修改主页,操作如下:

 

1.移动/etc/httpd/conf.d/wlcom.conf文件到根目录下,(注意:此时/etc/httpd/conf.d/这个文件目录下已经没有wlcom.conf的这个文件):

[[email protected] ~]# mv  /etc/httpd/conf.d/welcome.conf    /

技术分享图片

 

2.切换至 /var/www/html/ 目录下:

[[email protected] ~]# cd  /var/www/html

技术分享图片

 

3.在此目录下,编辑一个index.html的文件  (注意:文件后缀名要以html结尾)

[[email protected] ~]# vi index.html

内容如下:

<h1>你好</h1>

4.修改成功退出后,重启服务器,生效配置文件:

[[email protected] ~]# systemctl  restart  httpd

技术分享图片

 

 

5.关闭防火墙:

[[email protected] ~]# iptables -F

[[email protected] ~]# iptables -X

[[email protected] ~]# setenforce 0

技术分享图片

6.结果如下:

技术分享图片

 

 




以上是关于跑网页的主要内容,如果未能解决你的问题,请参考以下文章

让移动端网页跑得更快些,Google收购AMP网页加载提速工具Relay Media | 友翼派

新宝gg上级跑路请联系+42873

selenium使用谷歌浏览器自带手机模拟器运行H5网页

为啥在网站首页改了代码之后传到服务器上,结果网页没有改动

基于网页api(接口)实现查快递

如何自动登录网站?