Answer the question
In order to leave comments, you need to log in
How to properly configure redirect in nginx?
good afternoon!
Tell me how to set up a redirect in nginx from a URL like /question/{question-id}/answer/{answer-id}/ to a URL like
/question/{question-id}/#answer-{answer-id}/
Example:
https://povestka.by/question/15935/answer/15937/ -> https://povestka.by/question/15935#answer-15937
Answer the question
In order to leave comments, you need to log in
You can use rewrite
location / {
rewrite ^/question/([0-9]+)/answer/([0-9]+)/$ /question/$1#answer-$2 permanent;
...
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question