首页 > 代码库 > apache 配置虚拟目录

apache 配置虚拟目录

<VirtualHost *:80>
    DocumentRoot "/opt/www"
    ServerName localhost
    ServerAlias localhost
    <Directory />
        Require all granted
    </Directory>
</VirtualHost>



apache 配置虚拟目录