zapj / zap-php-framework
zap php 框架
v1.0.3
2023-12-21 01:56 UTC
Requires
- php: >=7.4.0
- ext-curl: *
- ext-dom: *
- ext-json: *
- ext-mbstring: *
- ext-openssl: *
- ext-pdo: *
- ext-simplexml: *
This package is auto-updated.
Last update: 2024-09-20 07:41:58 UTC
README
PHP 最小版本
PHP 7.4
通过 Composer 安装 Zap-PHP-Framework
composer require zapj/zap-php-framework
URL 重写
Apache
Options +FollowSymLinks -Indexes RewriteEngine On RewriteCond %{HTTP:Authorization} . RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [QSA,PT,L]
Nginx
location / {
try_files $uri $uri/ /index.php?$query_string;
}