zoukankan      html  css  js  c++  java
  • LAMP配置虚拟目录

    1.  httpd.conf中添加 Listen 81

    2. 

     1  <VirtualHost 127.0.0.2:81>
    2 DocumentRoot E:\ws\2011\DiscuzSpace\upload
    3 ServerName 127.0.0.2:81
    4 </VirtualHost>
    5 <Directory "E:\ws\2011\DiscuzSpace\upload">
    6 Options Indexes FollowSymLinks Multiviews
    7 AllowOverride All
    8 Order Allow,Deny
    9 Allow from all
    10 </Directory>
     1 <VirtualHost 127.0.0.5:81>
    2 DocumentRoot E:\php-ws-source\myphp
    3 ServerName 127.0.0.5:81
    4 </VirtualHost>
    5 <Directory "E:\php-ws-source\myphp">
    6 Options Indexes FollowSymLinks Multiviews
    7 AllowOverride All
    8 Order Allow,Deny
    9 Allow from all
    10 DirectoryIndex index.html
    11 </Directory>

      

  • 相关阅读:
    记坑
    常用模板
    ACM-东北赛划水记
    jzoj 4178游戏
    JZOI 4163
    jzoj 4146踩气球
    jzoj 5589. 缩点
    jzoj 5588 %%%
    jzoj 5571 ffs
    BJOI 2017 Kakuro
  • 原文地址:https://www.cnblogs.com/yql1986/p/2131713.html
Copyright © 2011-2022 走看看