U验证用户管理系统3.2

温馨提示:
公众号:溯光笔记 本站仅为个人兴趣爱好而创立 并不会收费,感谢大家的支持.如有冒犯请联系我.

API : https://www.uverif.com/doc/3.2/introduce

U验证用户管理系统1.20-beta3 魔改版 https://pan.quark.cn/s/1097476e87c5

U验证用户管理系统3.2-09222135    https://pan.quark.cn/s/c942666b1cda

易语言u系统3.2卡密验证列子+好看的ui  https://pan.quark.cn/s/c3f7a4d6fd5b

易语言助手安装程序_v3.4.520_正式版  https://pan.quark.cn/s/18bc40790f2f

 

 

Nginx伪静态配置

location /api {
	rewrite  ^/api(.*)$  /api.php?s=$1  last;   break;
}
location /admin {
  try_files $uri $uri /admin/index.html;
}
location /agent {
  try_files $uri $uri /agent/index.html;
}
nginx

 

Apache伪静态配置

RewriteEngine On
RewriteRule ^api(/.*)$ /api.php?s=$1 [QSA,END]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^admin/.*$ /admin/index.html [END]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^agent/.*$ /agent/index.html [END]
THE END