CentOS7 apache创建虚拟路径

Posted 小骆骆

tags:

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

#virtual host 1     # 虚拟主机1的配置
<VirtualHost 172.105.215.36:80>
        ServerName mumuling.com
DocumentRoot "/var/www/html/wordpress"
   # ErrorLog "/var/www/html/log/error_mumuling.com.log"
   # CustomLog "/var/www/html/log/custom_mumuling.com.log" combined
   # <Location /server-status>
    #    SetHandler server-status
   # </Location>
    <Directory /var/www/html/wordpress>
        <RequireAll>
        Require all granted
     #   Require not ip 192.168.1
        </RequireAll>
    </Directory>
</VirtualHost>

 

以上是关于CentOS7 apache创建虚拟路径的主要内容,如果未能解决你的问题,请参考以下文章

LINUX CENTOS7 关于DNS,DHCP,Apache的配置

Apache基础服务之Web访问控制(身份验证虚拟目录虚拟主机)

基于Apache+php+mysql的许愿墙网站的搭建create database xyq; //创建xyq数

centos7编译安装apache后添加用户认证和配置虚拟主机

Centos7 Apache配置虚拟主机的三种方式

CentOS7单机部署lamp环境和apache虚拟主机