Created
July 14, 2022 23:44
-
-
Save ph00lt0/f0a83b9cb5b413d91409e5740da72687 to your computer and use it in GitHub Desktop.
Nginx Redirect Rule
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
... | |
location / { | |
rewrite ^/app/uploads/armember/(.*)$ /vault.php?listing=$1 last; | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment