newbie
newbie

Reputation: 428

Send a 301 header in a CURL request

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

Answers (1)

hakre
hakre

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

Related Questions