Linux apache 创建虚拟目录

来源:互联网 发布:2016淘宝排名突然下降 编辑:程序博客网 时间:2024/05/28 15:17
创建虚拟目录:
Alias /bbs/ "/var/www/web1"

<Directory "/var/www/web1">    Options Indexes MultiViews
   AllowOverride None
   Order allow,deny
   Allow from all
</Directory>
Listen 8081
<VirtualHost *:8080>

DocumentRoot /var/www/web1
DirectoryIndex index.html index.htm
HostNameLookups off

</VirtualHost>

0 0