[Fixed]-Django removes #anchor in urls

1👍

Anchor part of the url not sent to the server. it only used at client side.

0👍

Your url config defines a slash at the end, so you have to use it in the URL as well:

http://localhost:5000/faq/#12

If you miss it, there will be a redirect that removes the anchor.

Leave a comment