# dphp **Repository Path**: shaten/dphp ## Basic Information - **Project Name**: dphp - **Description**: DPHP,轻量级,低耦合开源PHP框架,MVC结构,轻量级可扩展模板引擎,验证码;上传;加密;静态路由,正则路由;多模块,分页,统统都有。 - **Primary Language**: PHP - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2018-02-05 - **Last Updated**: 2021-11-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## DPHP ## [![Build Status](https://travis-ci.org/diiyw/dphp.svg?branch=master)](https://travis-ci.org/diiyw/dphp) 轻量,自由,极速,可高度自定义。 ## 伪静态 ## Nginx ``` if (!-e $request_filename) { rewrite ^(.*)$ /index.php?_s=$1 last; break; } ``` Apache ``` RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/?_s=$1 [QSA,L] ```