znframework/shared-extension

ZN 框架共享扩展

1.0.1 2021-02-27 15:40 UTC

This package is auto-updated.

Last update: 2024-09-07 03:08:41 UTC


README

ZN 框架共享扩展

允许您创建共享工作目录。为此,此目录必须在DocumentRoot中作为工作目录显示。

安装

您只需运行以下代码即可进行安装。

composer create-project znframework/shared-extension public

配置

对于配置,请按以下方式编辑.conf文件。

<VirtualHost *:80>

    ServerAdmin webmaster@localhost
    DocumentRoot /var/www/html/public

    <Directory /var/www/html/public>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Require all granted
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
    
</VirtualHost>