get_script_prefix()
[source]
Normally, you should always use reverse()
to define URLs within your application. However, if your application constructs part of the URL hierarchy itself, you may occasionally need to generate URLs. In that case, you need to be able to find the base URL of the Django project within its Web server (normally, reverse()
takes care of this for you). In that case, you can call get_script_prefix()
, which will return the script prefix portion of the URL for your Django project. If your Django project is at the root of its web server, this is always "/"
.
Please login to continue.