wudimeicom/wudimeimvc

wudimei PHP 框架,用于 Web MVC 开发

安装: 0

依赖: 0

建议者: 0

安全: 0

星星: 2

关注者: 1

分支: 0

开放问题: 0

语言:CSS

类型:项目

dev-main 2022-06-01 03:00 UTC

This package is auto-updated.

Last update: 2024-09-29 05:48:59 UTC


README

http://wudimei.com

要求

  1. php 7/8

安装步骤 1

  1. composer install
 php composer.phar install
  1. 请将 /wudimei_mvc.sql 导入到 mariadb/mysql

  2. 请编辑 /config 文件夹中的文件

  3. nginx 重写示例

server {
    listen       80;
    server_name  127.0.10.2;
    root   /www/open/WudimeiMVC/public;
    location / {
        index  index.php index.html index.htm;
        try_files $uri $uri/ /index.php?$query_string;
    }
    location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9090;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
     }
}

后端

http://您的IP或域名/backend_2016

用户: yqr2

密码:123456

链接

  1. wudimei 模板引擎 https://github.com/wudimei/template
  2. wudimei PHP https://github.com/wudimeicom/wudimeiphp
  3. WudimeiPHP 的 IDE 内容辅助 https://github.com/yangqingrong/WudimeiPHP_IDE_Content_Assist