The 301 redirect in the project settings (doc) doesn’t accept and redirect POST
requests
Example:
Old path: /oldurl
Redirect to path: https://www.example.com/oldurl
Doing a POST
request to /oldurl
returns a 405 http error instead
curl -L -XPOST [WEBFLOW_URL_HERE]/oldurl
returns
Response:
<html>
<head><title>405 Not Allowed</title></head>
<body>
<center><h1>405 Not Allowed</h1></center>
<hr><center>openresty</center>
</body>
</html>
Is this intended? Since I expect the destination URL to be the one to determine which methods it accepts
Is there a workaround for this?