【修改首页内容】
[root@chaogelinux ~]# vim /var/www/html/index.html
[root@chaogelinux ~]# curl 127.0.0.1
<meta charset=utf8>
超哥带你学apache
【修改网页资源目录路径】
1.修改配置文件如下,两处修改
[root@chaogelinux ~]# cat /etc/httpd/conf/httpd.conf
DocumentRoot "/www/html"
<Directory "/www">
AllowOverride None
# Allow open access:
Require all granted
</Directory>
2.创建资源目录,创建html文件
mkdir -p /www/html/
[root@chaogelinux conf]# cat /www/html/index.html
<meta charset=utf8>
我是新的首页,你好兄弟们
3.修改了配置文件,还得重启http服务才能生效
systemctl restart httpd
4.注意关闭防火墙和selinux,影响实验
[root@chaogelinux conf]# systemctl stop firewalld
[root@chaogelinux conf]# systemctl disable firewalld
[root@chaogelinux conf]# iptables -F
[root@chaogelinux conf]# setenforce 0 #临时关闭selinux
[root@chaogelinux conf]# grep -i ‘^selinux‘ /etc/selinux/config
SELINUX=disabled #永久关闭selinux,重启机器生效
SELINUXTYPE=targeted
5.此时可以访问新的页面了
[root@chaogelinux conf]# curl 127.0.0.1
<meta charset=utf8>
我是新的首页,你好兄弟们
【修改监听端口】
[root@chaogelinux ~]# grep -i "^listen" /etc/httpd/conf/httpd.conf
Listen 85
访问效果
[root@chaogelinux ~]# curl 127.0.0.1:85
<meta charset=utf8>
我是新的首页,你好兄弟们
相关文章
- 10-05151、静态函数能定义为虚函数吗?常函数呢?说说你的理解
- 10-05apache常用工作模式的区别
- 10-05apache2开启/使能.htaccess文件的方法
- 10-05我怎么能告诉Apache2,默认运行mod_php5但是在CGI模式下运行这个VH?
- 10-05Apache Commons 常用工具类整理
- 10-05apache常用工能
- 10-05《容器化系列三》利用Docker创建两个apache容器并单独提供ip能直接访问
- 10-05在Apache禁止访问目录前提下,能访问到其他目录的设置
- 10-05Apache设置用户权限(2个域名。一个能访问全部文件,一个只能访问指定文件)
- 10-05Apache Commons 常用工具类整理