Opened 7 years ago

Last modified 6 years ago

#28720 closed New feature

Add HttpRequest.get_full_path_info — at Version 1

Reported by: Jonas Haag Owned by: nobody
Component: HTTP handling Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Jonas Haag)

HttpRequest.get_full_path returns the HttpRequest.path based full path, including query string. Example: /posts/12345/?foo=bar.

We should add a counterpart for HttpRequest.path_info that includes the SCRIPT_NAME, if set. Example: /scriptname/posts/12345/?foo=bar

Example use case: Adding hreflang meta tags to your <head> section. This must include the SCRIPT_NAME prefix as well, otherwise invalid URLs are given.

<link rel=alternative hreflang=en href="https://yourdomain.com{{ request.get_full_path_info }}">

Patch: https://github.com/django/django/pull/9253

Change History (1)

comment:1 by Jonas Haag, 7 years ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.
Back to Top