Reputation: 428
I've googled around for how to send a 301 header with a CURL request in PHP, but have come up with nothing! Does someone know how this can be done? Thanks
Upvotes: 1
Views: 256
Reputation: 198203
301 is not a request header but a HTTP response status code. As curl is to establish requests - not responses - you can not send a 301 header with curl.
Upvotes: 3