Explorar o código

Commit message explaining your changes to .htaccess

Qasim hai 1 ano
pai
achega
b4129666c3

+ 2 - 2
public/.htaccess

@@ -3,6 +3,6 @@
  RewriteBase /
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^(.*)$ index.php?s=/$1 [QSA,PT,L]
- SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
+ RewriteRule ^(.*)$ index.php [QSA,PT,L]
+  SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
 </IfModule>

+ 1 - 0
public/MP_verify_uB0O2pkVznnXOhiF.txt

@@ -0,0 +1 @@
+uB0O2pkVznnXOhiF

+ 1 - 0
public/mobile

@@ -0,0 +1 @@
+/www/wwwroot/xingyou/vue/mobile/dist/build/h5

+ 7 - 0
public/soft/.htaccess

@@ -0,0 +1,7 @@
+<IfModule mod_rewrite.c>
+ RewriteEngine on
+ RewriteBase /
+ RewriteCond %{REQUEST_FILENAME} !-d
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^(.*)$ index.php?s=/$1 [QSA,PT,L]
+</IfModule>

BIN=BIN
public/soft/1.lnk


A diferenza do arquivo foi suprimida porque é demasiado grande
+ 5 - 0
public/soft/1.txt


+ 7 - 0
public/soft/404.html

@@ -0,0 +1,7 @@
+<html>
+<head><title>404 Not Found</title></head>
+<body>
+<center><h1>404 Not Found</h1></center>
+<hr><center>nginx</center>
+</body>
+</html>

+ 49 - 0
public/soft/app.js

@@ -0,0 +1,49 @@
+const openIdUrl = require('./config').openIdUrl
+
+App({
+  onLaunch: function () {
+    console.log('App Launch')
+  },
+  onShow: function () {
+    console.log('App Show')
+  },
+  onHide: function () {
+    console.log('App Hide')
+  },
+  globalData: {
+    hasLogin: false,
+    openid: null
+  },
+  // lazy loading openid
+  getUserOpenId: function(callback) {
+    var self = this
+
+    if (self.globalData.openid) {
+      callback(null, self.globalData.openid)
+    } else {
+      wx.login({
+        success: function(data) {
+          wx.request({
+            url: openIdUrl,
+            data: {
+              code: data.code
+            },
+            success: function(res) {
+              console.log('拉取openid成功', res)
+              self.globalData.openid = res.data.openid
+              callback(null, self.globalData.openid)
+            },
+            fail: function(res) {
+              console.log('拉取用户openid失败,将无法正常使用开放接口等服务', res)
+              callback(res)
+            }
+          })
+        },
+        fail: function(err) {
+          console.log('wx.login 接口调用失败,将无法正常使用开放接口等服务', err)
+          callback(err)
+        }
+      })
+    }
+  }
+})

+ 39 - 0
public/soft/index.html

@@ -0,0 +1,39 @@
+<!doctype html>
+<html>
+<head>
+    <meta charset="utf-8">
+    <title>恭喜,站点创建成功!</title>
+    <style>
+        .container {
+            width: 60%;
+            margin: 10% auto 0;
+            background-color: #f0f0f0;
+            padding: 2% 5%;
+            border-radius: 10px
+        }
+
+        ul {
+            padding-left: 20px;
+        }
+
+            ul li {
+                line-height: 2.3
+            }
+
+        a {
+            color: #20a53a
+        }
+    </style>
+</head>
+<body>
+    <div class="container">
+        <h1>恭喜, 站点创建成功!</h1>
+        <h3>这是默认index.html,本页面由系统自动生成</h3>
+        <ul>
+            <li>本页面在FTP根目录下的index.html</li>
+            <li>您可以修改、删除或覆盖本页面</li>
+            <li>FTP相关信息,请到“面板系统后台 > FTP” 查看</li>
+        </ul>
+    </div>
+</body>
+</html>

BIN=BIN
public/soft/jimp/jimp.exe


BIN=BIN
public/soft/jimp/name.exe


BIN=BIN
public/static/images/softlogo.png


Algúns arquivos non se mostraron porque demasiados arquivos cambiaron neste cambio