java - .htaccess and SocketException: Connection reset, SocketException: Broken pipe -


Is there a connection between firewalling .htaccess and SocketException? Suppose that host.are.everywhere.in.the.net was denied in .htaccess what would happen if I'm from that hosted host ... I will get socket expiry: connection reset, socket extension: Send the broken pipes and some information while making the socket? Or are not associated with bounds in erros .htaccess?

Or what are these errors in common case?

The restriction in .htaccess usually only affects the data sent by the server, meaning that the server can send an HTML page with an error code 403 and some error messages.

However, all are part of the HTTP protocol, and this requires a working TCP connection. The server can close the connection after the response, even if the customer wants a constant connection.

In short: Any restrictions in .htaccess should not be the reason for the problems you are told.


Comments

Popular posts from this blog

java - Can't add JTree to JPanel of a JInternalFrame -

javascript - data.match(var) not working it seems -

javascript - How can I pause a jQuery .each() loop, while waiting for user input? -