zoukankan      html  css  js  c++  java
  • apache多站点vhost.conf配置

    #第1个站点的配置
    <VirtualHost *:80>
        DocumentRoot "D:/phpStudy/WWW"
        ServerName localhost
    	<Directory "D:/phpStudy/WWW">
    		    Options +Indexes +FollowSymLinks +ExecCGI
    		    Order Allow,Deny
    		    Allow from all
    
    		    DirectoryIndex index.php index.html
    		  
    #		    当前目录,允许“分布式”权限布置
    		    AllowOverride all
    	</Directory>
    </VirtualHost>
    
    #第2个站点的配置
    <VirtualHost *:80>
    	ServerName	www.xuexi.com
    #   设定该站点的域名,即通过以下域名访问
    	ServerAlias map.xuexi.com  tv.xuexi.com
    	DocumentRoot	"D:/phpStudy/WWW/xuexi/day1"
    	<Directory "D:/phpStudy/WWW/xuexi/day1">
    	    Options +Indexes +FollowSymLinks +ExecCGI
    	    Order Allow,Deny
    	    Allow from all
    
    	    DirectoryIndex index.html index.php
    	  
    	    #当前目录,允许“分布式”权限布置
    	    AllowOverride all
    	</Directory>
    
    	#设置目录别名(虚拟目录)
    	Alias  /zst  "D:/phpStudy/WWW/tp3.2.3"
    	<Directory "D:/phpStudy/WWW/tp3.2.3">
    	    Options +Indexes +FollowSymLinks +ExecCGI
    	    Order Allow,Deny
    	    Allow from all
    
    	    DirectoryIndex index.html index.php
    	  
    	    #当前目录,允许“分布式”权限布置
    	    AllowOverride all
    	</Directory>
    	
    </VirtualHost>
    
    #第3个站点的配置
    <VirtualHost *:80>
        DocumentRoot "D:/phpStudy/WWW/tp3.2.3"
        ServerName www.zstphp.com
    	<Directory "D:/phpStudy/WWW/3.2.3">
    		    Options +Indexes +FollowSymLinks +ExecCGI
    		    Order Allow,Deny
    		    Allow from all
    
    		    DirectoryIndex index.php index.html
    		  
    #		    当前目录,允许“分布式”权限布置
    		    AllowOverride all
    	</Directory>
    </VirtualHost>
    

      

  • 相关阅读:
    2014年3月新鲜出炉的最佳 JavaScript 工具库
    开发者不容错过的10款免费JavaScript游戏引擎
    创建Android环境并且安装cordova
    程序员技术练级攻略
    android sdk更新后出现please update ADT to the latest version的解决方法
    Linux cscope命令
    UltraISO制作系统ISO镜像
    Windows Live Writer 使用指南
    C语言访问网页
    Linux minicom命令
  • 原文地址:https://www.cnblogs.com/zst062102/p/7478928.html
Copyright © 2011-2022 走看看