当前位置 主页 > 服务器问题 > Linux/apache问题 > 最大化 缩小

    linux环境apache多端口配置虚拟主机的方法深入介绍(3)

    栏目:Linux/apache问题 时间:2019-11-12 18:24


    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs-2.2/mod/core.html#options
    # for more information.
    Options None
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    AllowOverride None
    # Controls who can get stuff from this server.
    Order allow,deny
    Allow from all
    </Directory>

    2、单域名多端口设置
    复制代码 代码如下:
    <Directory "/srv/www/htdocs/bbs">
        Options None
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    <Directory "/srv/www/htdocs/">
        Options None
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    NameVirtualHost   *:80
    NameVirtualHost   *:81
    <VirtualHost *:80>
      DirectoryIndex  index.html index.php
      ServerName   "www.abc.com "
      DocumentRoot   "/srv/www/htdocs/" 
      </VirtualHost>
    <VirtualHost *:81>
      DirectoryIndex   index.php
        ServerName   "www.abc.com:81 "
      DocumentRoot   "/srv/www/htdocs/bbs/" 
      </VirtualHost>

    3、多域名多端口设置
    复制代码 代码如下:
    <Directory "/srv/www/htdocs/btc">
        Options None
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    <Directory "/srv/www/htdocs/bbs">
        Options None
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    <Directory "/srv/www/htdocs/">
        Options None
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    NameVirtualHost   *:80
    NameVirtualHost   *:81
    <VirtualHost *:80>
      DirectoryIndex  index.html index.php
      ServerName   "www.abc.com "
      DocumentRoot   "/srv/www/htdocs/" 
      </VirtualHost>
    <VirtualHost *:80>
      DirectoryIndex  index.html index.php
      ServerName   "www.btc.com "
      DocumentRoot   "/srv/www/htdocs/btc" 
      </VirtualHost>
    <VirtualHost *:81>
      DirectoryIndex   index.php
        ServerName   "www.abc.com:81 "
      DocumentRoot   "/srv/www/htdocs/bbs/" 
    下一篇:没有了