Problem is, whenever I call url_for(), parameters and anchor are not
included. Using the example above, only received: http://aaa/bbb.
?c=123#45 is always omitted.
Doesn’t have to be absolute. Relative url is fine. This is for
redirecting back to refferer purposes.
Hmm, is the anchor something that the webserver reads or just something
the browser understands? It might be that the server doesn’t even see
it, just a guess though.
It may be possible with javascript? But that’s not exactly useful is it.
Hmm, is the anchor something that the webserver reads or just something
the browser understands? It might be that the server doesn’t even see
it, just a guess though.
It may be possible with javascript? But that’s not exactly useful is it.
env[‘HTTP_REFERRER’] returns the anchor find so the server is not the
problem. But HTTP_REFERRER only works if you actually click on a link.
I need this on server side so am afraid javascript won’t help.