Reputation: 1
I've been battling with redirects after users log in.
The redirect is encoded into the URL. For example:
On this demo install it works perfectly.
However on a development site it seems to double encode the url so it becomes:
Forward slash is encoded to %3A and then further to %253
Any suggestions?
Thanks.
Upvotes: 0
Views: 80
Reputation: 1
Typical - struggle for days and as soon as you ask the question one works it out.
It was my .htaccess file rewriting the URL.
Used the No-Escape flag to fix it: http://httpd.apache.org/docs/2.2/rewrite/flags.html#flag_ne
Upvotes: 0