VPay
4.4.0
master
-Branch-Version ist eine vollständig rekonstruierte Version der 4.0-Serie und unterstützt nur支付宝当面付
.dev
-Branch-Version ist die stabile Version der 3.0-Serie, die nur支付宝当面付
unterstützt;Vpay – eine persönliche Zahlungslösung, die es einzelnen Entwicklern ermöglicht, Online-Transaktionen sicher und effizient abzuwickeln.
Wählen Sie eine der folgenden beiden Optionen
/public
if ($uri ~* "^(.*).php$") {
rewrite ^(.*) /cleanphp/bootstrap.php last;
}
location @cleanphp {
rewrite ^ /cleanphp/bootstrap.php last;
}
location ~* ^/@static(.*)$ {
if_modified_since before;
expires 30d;
access_log off;
add_header Cache-Control "public";
try_files /app/public$1 /app/public/$1 /app/public$1/index.html /app/public/index.html =404 last;
}
location ~* ^/@(.*)$ {
if_modified_since before;
expires 30d;
access_log off;
add_header Cache-Control "public";
try_files /app/public$1 /app/public/$1 /app/public$1/index.html /app/public/$1/index.html /app/public/index.html last;
}
location / {
if_modified_since before;
expires 30d;
access_log off;
add_header Cache-Control "public";
try_files /app/public/$uri @cleanphp;
}
location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
error_log /dev/null;
access_log /dev/null;
}
location ~ .*.(js|css)?$
{
expires 12h;
error_log /dev/null;
access_log /dev/null;
}
Den Zugriff finden Sie unter vpay-sdk
Lesen Sie die Dokumentation
GPL V3