神甫 发表于 2018-11-22 08:40:41

如何配置Apache虚拟目录

# 虚拟目录,访问c盘下面的web目录  

  
    # 设置缺省载入页面
  
    DirectoryIndex index.html index.htm index.php
  
    # 设置站点别名,别名与访问路径是相关的,取任何名称都可以(除特殊)
  
    Alias /myweb "c:/web"
  
   
  
    # 设置访问权限
  
      Order allow,deny
  Allow from all
  
   
  



页: [1]
查看完整版本: 如何配置Apache虚拟目录