My web page does not render
I am de开发者_StackOverflow社区veloping a evaluation system. I have set up a dynamic web project in eclipse (with apache tomcat) and have been able to successfully access and view project when accessing it on my local host. However, I just deployed it online (via a war) and when I access the site the web pages do not render. All that is shown is the code. I set the doc type and the content type in an html comment and a meta tag respectively. Why could this be happening? the site is deployed at (REMOVED) as of right now.
Firebug is a great tool to check the HTTP request/responses. Check the Net tab. Here are the HTTP response headers which I get when I access the site which you linked in the question:
Note the content type. It's wrong, it should be text/html
. If you was using JSP to serve the response, then you probably had like this in top of your JSP
<%@page contentType="text/plain" %>
you should remove this (it already defaults to text/html
) or if in vain, replace this by
<%@page contentType="text/html" %>
If still in vain, contact the support of your hosting.
精彩评论