From 716a4fab2e889edd686cb974f193abde8b83c3d7 Mon Sep 17 00:00:00 2001 From: d4708 <96319366+d4708@users.noreply.github.com> Date: Wed, 4 May 2022 15:40:23 +0300 Subject: [PATCH] add nginx rewrite example --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 6529dcf..138549e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,10 @@ # cloud-server Multi-account instance allow users to interact with the twister network through web service. + +### nginx + +``` +location @extensionless-php { + rewrite ^/(.*)$ /index.php?_route_=$1 last; +} +```