Incomplete
Details
Details
Assignee
Unassigned
UnassignedReporter
Hugo Ahlenius
Hugo AhleniusPriority
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Affects versions
Created 11 March 2016 at 10:46
Updated 10 December 2018 at 11:19
Resolved 10 December 2018 at 11:19
When performing a cfhttp, the redirect does not resolve if the method *is *post.
Simple test case:
<h1>Trying with method=GET</h1> <cfhttp url='http://bit.ly/1LWdyrv' redirect='true' method='get' /> <cfdump var="#cfhttp#" /> <h1>Trying with method=POST</h1> <cfhttp url='http://bit.ly/1LWdyrv' redirect='true' method='post' /> <cfdump var="#cfhttp#" />