博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos7 Apache 2.4.6 多域名多网站配置
阅读量:5161 次
发布时间:2019-06-13

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

Apache 2.4.6 多域名多网站配置

在/etc/httpd/conf 下 编辑

vim httpd.conf

添加:ServerName 外网IP

并注释

#DocumentRoot "/var/www/html/"

 

在 /etc/httpd/conf.d下 编辑文件

vim httpd-vhosts.conf

内容如下:

NameVirtualHost *:80

<VirtualHost *:80>
ServerName www.yanwen.mobi
DocumentRoot "/var/www/html/ywapp"

<Directory "/var/www/html/ywapp">

Require all granted
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all

</Directory>

</VirtualHost>
<VirtualHost *:80>
ServerName doctor.yanwen.mobi
DocumentRoot "/var/www/html/test"

#Alias /course "/var/www/html/test" 取别名

<Directory "/var/www/html/test">

Require all granted
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
#Options +Includes -Indexes
#Options FollowSymLinks

</Directory>

</VirtualHost>

重启程序

systemctl  restart httpd

查看状态

systemctl status -l  httpd

参考:

http://www.linuxsir.org/linuxfxbsuse/8435.html

http://blog.csdn.net/zhanglei5415/article/details/6821066

 前提是 二级域名已经在购买商管理处解析过,可以在/etc/hosts下添加 配置下

 

 

 

在apache中设置访问目录后进入的默认页面为index.php

找到apache的配置文件httpd.conf后找到 
<IfModule dir_module> 
    DirectoryIndex index.html index.php 
</IfModule> 
在其中添加index.php,
参考:
http://www.cnblogs.com/w-y-f/p/3489518.html
http://blog.csdn.net/cjsyr_cjsyr/article/details/51516009
http://www.jb51.net/article/98269.htm
 

转载于:https://www.cnblogs.com/hanlong/p/6956765.html

你可能感兴趣的文章
求出斐波那契数组
查看>>
lr_start_transaction/lr_end_transaction事物组合
查看>>
CodeIgniter学习笔记(四)——CI超级对象中的load装载器
查看>>
.NET CLR基本术语
查看>>
ubuntu的home目录下,Desktop等目录消失不见
查看>>
建立,查询二叉树 hdu 5444
查看>>
[Spring框架]Spring 事务管理基础入门总结.
查看>>
2017.3.24上午
查看>>
Python-常用模块及简单的案列
查看>>
LeetCode 159. Longest Substring with At Most Two Distinct Characters
查看>>
LeetCode Ones and Zeroes
查看>>
基本算法概论
查看>>
jquery动态移除/增加onclick属性详解
查看>>
JavaScript---Promise
查看>>
暖暖的感动
查看>>
Java中的日期和时间
查看>>
Django基于admin的stark组件创建(一)
查看>>
抛弃IIS,利用FastCGI让Asp.net与Nginx在一起
查看>>
C. Tanya and Toys_模拟
查看>>
springboot jar包运行中获取资源文件
查看>>