博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Apache和PHP结合,httpd的虚拟主机配置
阅读量:6295 次
发布时间:2019-06-22

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

hot3.png

httpd配置支持php

上次安装httpd2.4对应的配置文件:/usr/local/apache2.4/conf/httpd.conf

编辑配置文件,修改以下4个地方
ServerName
Require all denied
AddType application/x-httpd-php .php
DirectoryIndex index.html index.php

  • 编辑配置文件,去掉ServerName前面的#,启动httpd
[root@test-a ~]# /usr/local/apache2.4/bin/apachectl starthttpd (pid 6328) already running
  • 防火墙打开80端口,测试访问
# Windows终端: telnet 192.168.77.134  80正在连接192.168.77.134...无法打开到主机的连接。 在端口 80: 连接失败[root@test-a ~]# iptables -I INPUT -p tcp --dport 80 -j ACCEPT# 再次telnet可以访问了
  • 如果打开80端口,访问出现403错误,编辑配置把Require all denied 改为 Require all granted
# 改完配置需要重新加载配置,加载前最好检测配置是否正确[root@test-a ~]# /usr/local/apache2.4/bin/apachectl -tSyntax OK# 加载配置[root@test-a ~]# /usr/local/apache2.4/bin/apachectl graceful
  • 配置支持PHP,搜AddType,在"AddType application/x-gzip .gz .tgz"这行下面添加"AddType application/x-httpd-php .php"
  • 增加索引页,搜索DirectoryIndex,找到如下内容,增加了index.php
DirectoryIndex index.html index.php
  • 在目录/usr/local/apache2.4/htdocs/下编写php文件,尝试访问,例如1.php,访问http:ip/1.php

httpd的默认虚拟主机

  • 一台服务器可以访问多个网站,每个网站都是一个虚拟主机
  • 概念:域名(主机名)、DNS、解析域名、hosts 任何一个域名解析到这台机器,都可以访问的虚拟主机就是默认虚拟主机
vim /usr/local/apache2/conf/httpd.conf # 搜索httpd-vhost,去掉#,使支持虚拟主机vim /usr/local/apache2/conf/extra/httpd-vhosts.conf # 改为如下
ServerAdmin test@163.com # 管理员邮箱,可以不用配置 DocumentRoot "/tmp/web-default" # 网站资源目录 ServerName test.com # 域名 ServerAlias www.test.com # 域名别名 ErrorLog "logs/test.com-error_log" # 错误日志 CustomLog "logs/test.com-access_log" common # 访问日志
DocumentRoot "/tmp/web-1/" ServerName www.123.com
[root@test-a apache2.4]# bin/apachectl -tSyntax OK[root@test-a apache2.4]# bin/apachectl graceful

编写测试文件1.php放到/tmp/web-default目录下,2.php放到/tmp/web-1/下, 访问测试

[root@test-a apache2.4]# curl  -x 192.168.77.134:80  test.com1.php[root@test-a apache2.4]# curl  -x 192.168.77.134:80  www.test.com1.php[root@test-a apache2.4]# curl  -x 192.168.77.134:80  www.123.com2.php[root@test-a apache2.4]# curl  -x 192.168.77.134:80 www.example.com # 访问默认虚拟主机1.php

转载于:https://my.oschina.net/u/996931/blog/2876397

你可能感兴趣的文章
政府安全资讯精选 2017年第十六期 工信部发布关于规范互联网信息服务使用域名的通知;俄罗斯拟建立备用DNS;Google打击安卓应用在未经同意情况下收集个人信...
查看>>
简单易懂的谈谈 javascript 中的继承
查看>>
iOS汇编基础(四)指针和macho文件
查看>>
Laravel 技巧锦集
查看>>
Android 使用 ViewPager+RecyclerView+SmartRefreshLayout 实现顶部图片下拉视差效果
查看>>
Flutter之基础Widget
查看>>
写给0-3岁产品经理的12封信(第08篇)——产品运营能力
查看>>
ArcGIS Engine 符号自动化配置工具实现
查看>>
小程序 · 跳转带参数写法,兼容url的出错
查看>>
flutter error
查看>>
Flask框架从入门到精通之模型数据库配置(十一)
查看>>
10年重新出发
查看>>
2019年-年终总结
查看>>
聊聊elasticsearch的RoutingService
查看>>
让人抓头的Java并发(一) 轻松认识多线程
查看>>
从源码剖析useState的执行过程
查看>>
地包天如何矫正?
查看>>
中间件
查看>>
Android SharedPreferences
查看>>
css面试题
查看>>