WebEnh

.net7 mvc jquery bootstrap json 学习中 第一次学PHP,正在研究中。自学进行时... ... 我的博客 https://enhweb.github.io/ 不错的皮肤:darkgreentrip,iMetro_HD
  首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

LAMP配置虚拟目录

Posted on 2016-07-09 13:41  WebEnh  阅读(377)  评论(0编辑  收藏  举报

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>
复制代码