Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm doing HTTP basic authentication via .htaccess, and I need to logout; is this possible?

Thanks.

share|improve this question
Please consider accepting some answers for other questions you have asked. This will help bring your 'accept rate' up. – Adam Wagner Oct 5 '11 at 23:24
[Here][1], @BalusC, describes a way to log out using Basic auth. [1]: stackoverflow.com/questions/10786807/… – kroiz Jul 30 '12 at 6:29

1 Answer

up vote 1 down vote accepted

Per the Wikipedia Basic access authentication page (in the Disadvantages section):

there is no effective way for a server to "log out" the user without closing the browser.

This is because the server doesn't keep track of who is logged in. Instead, the browser sends authentication credentials on every request to the server.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.