# php-simple-mvc **Repository Path**: codejm/php-simple-mvc ## Basic Information - **Project Name**: php-simple-mvc - **Description**: php simple mvc framework - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2014-07-21 - **Last Updated**: 2020-12-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README php-simple-mvc ============== php simple mvc framework #### nginx 配置 server { listen 80; server_name codejm; index index.html index.htm index.php; root /dir/codejm; location / { try_files $uri $uri/ /index.php?$args; } location ~ .*\.(php|php5)?$ { try_files $uri =404; fastcgi_pass unix:/tmp/php-cgi.sock; fastcgi_index index.php; include fcgi.conf; } access_log off; }