作者 郭鑫

upapi

@@ -7,7 +7,7 @@ @@ -7,7 +7,7 @@
7 .update 7 .update
8 composer.lock 8 composer.lock
9 9
10 -/public/api 10 +
11 /public/assets/dist 11 /public/assets/dist
12 /node_modules 12 /node_modules
13 13
  1 +<IfModule mod_rewrite.c>
  2 + Options +FollowSymlinks -Multiviews
  3 + RewriteEngine On
  4 +
  5 + RewriteCond %{REQUEST_FILENAME} !-d
  6 + RewriteCond %{REQUEST_FILENAME} !-f
  7 + RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
  8 +</IfModule>
  1 +<?php
  2 +// +----------------------------------------------------------------------
  3 +// | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4 +// +----------------------------------------------------------------------
  5 +// | Copyright (c) 2013-2017 http://www.thinkcmf.com All rights reserved.
  6 +// +----------------------------------------------------------------------
  7 +// | Author: Dean <zxxjjforever@163.com>
  8 +// +----------------------------------------------------------------------
  9 +
  10 +// [ 应用入口文件 ]
  11 +
  12 +// 调试模式开关
  13 +define("APP_DEBUG", true);
  14 +
  15 +// 定义 APP 命名空间
  16 +define("APP_NAMESPACE", 'api');
  17 +
  18 +// 定义CMF根目录,可更改此目录
  19 +define('CMF_ROOT', __DIR__ . '/../../');
  20 +
  21 +// 定义应用目录
  22 +define('APP_PATH', CMF_ROOT . 'api/');
  23 +
  24 +// 定义CMF目录
  25 +define('CMF_PATH', __DIR__ . '/../../simplewind/cmf/');
  26 +
  27 +// 定义插件目录
  28 +define('PLUGINS_PATH', __DIR__ . '/../plugins/');
  29 +
  30 +// 定义扩展目录
  31 +define('EXTEND_PATH', __DIR__ . '/../../simplewind/extend/');
  32 +define('VENDOR_PATH', __DIR__ . '/../../simplewind/vendor/');
  33 +
  34 +// 定义应用的运行时目录
  35 +define('RUNTIME_PATH',__DIR__.'/../../data/runtime/app/');
  36 +
  37 +// 加载框架基础文件
  38 +require __DIR__ . '/../../simplewind/thinkphp/base.php';
  39 +
  40 +// 执行应用
  41 +\think\App::run()->send();