zapj / zap-php-framework
zap php framework
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-12-24 09:09:58 UTC
README
PHP Min
PHP 7.4
Installing Zap-PHP-Framework via Composer
composer require zapj/zap-php-framework
URL Rewrite
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;
}