Skip to main content

Hash Fragment of a URL on the Server Side

The hash fragments of a URL (the part after a #), is never pass to the server!

Example: https://example.com/user/12345#profile. If this is sent to a server via axios, the URL will not contains the profile part. It's actually dropped.

Comments