add nginx rewrite example

This commit is contained in:
d4708 2022-05-04 15:40:23 +03:00 committed by GitHub
parent 4a1818823a
commit 716a4fab2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}
```