Try to replace your static text to this one:
"HTTP/1.0 200 OK\r\n"
"Server: UIP/1.0 (http://www.something.com/)\r\n"
"Content-type: text/html; charset=utf-8\r\n"
NOTE : the backslash ('\') character is an esacpe character, in your static string, you did "\h" with your "text\html"
NOTE : The "charset=utf-8" part is only useful if your files are utf-8 encode
Yanick Rochon
2010-06-30 23:49:34