Luke Mcneice
Luke Mcneice

Reputation: 2720

Debugging 403's?

whats the best way to investigate why a server is returning a 403 for a http web request?

Can an iis server be configured to provide a more detailed internal log for 403's?

Upvotes: 11

Views: 7829

Answers (1)

John Murowaniecki
John Murowaniecki

Reputation: 623

A nice way to start is to analyze returned headers (using curl -vvv, or inspecting the request using your favorite web browser development tool).

Upvotes: 1

Related Questions