Replies: 1 comment 2 replies
-
You can use a reverse proxy with url rewriting for that. See the SQLPage nginx configuration guide for reference. location / {
rewrite ^(.*)\.sqldemo$ $1.sql last;
} But out of curiosity: why are you doing this? What are you building? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
how do I change the extension from .sql to .sqldemo ?
Beta Was this translation helpful? Give feedback.
All reactions