这是一个非常令人沮丧的问题。我的 Web 应用程序有一个登录页面,HTML 如下所示。如您所见,我使用的是 WebSphere Application Server 提供的基于表单的身份验证(auth-method=FORM),因此使用了表单 action="j_security_check"。
这在我的本地 WAS Liberty Edition Server v8.5 上本地运行良好,所有 CSS 都正确呈现。但是当我将它部署到远程服务器(IBM WAS v8.0.0.5)并使用 Chrome/FF/IE8 打开应用程序时,会发生以下情况,a。未应用样式表 b. 我在 Chrome 网络工具中看到以下错误——资源被解释为样式表,但使用 MIME 类型 text/html 传输:“ http://example.com:9081/PSSU/login2.html ”。login2.html:c。即使我尝试登录,浏览器显示的也是 bootstrap.css 文件 b。其他 HTML 页面使用 stlying 渲染得很好
我检查了服务器 VirtualHosts 中的 MIME 类型,我可以看到 application/javascript(对于 .js)和 text/css(对于 .css)的定义。
我在这里错过了什么吗?任何指针/帮助将不胜感激。
PS:在Tomcat容器中的行为也是一样的
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sign in ...</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 40px;
padding-bottom: 40px;
background-color: #f5f5f5;
}
.form-signin {
max-width: 300px;
padding: 19px 29px 29px;
margin: 0 auto 20px;
background-color: #fff;
border: 1px solid #e5e5e5;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
margin-bottom: 10px;
}
.form-signin input[type="text"],
.form-signin input[type="password"] {
font-size: 16px;
height: auto;
margin-bottom: 15px;
padding: 7px 9px;
}
</style>
<link href="assets/css/bootstrap-responsive.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<form class="form-signin" action="j_security_check" method="post">
<h2 class="form-signin-heading">Please sign in</h2>
<input id="j_username" name="j_username" type="text" class="input-block-level" placeholder="Email address">
<input id="j_password" name="j_password" type="password" class="input-block-level" placeholder="Password">
<button class="btn btn-large btn-primary" type="submit">Sign in</button>
</form>
</div> <!-- /container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="assets/js/jquery-1.8.3.js"></script>
<script src="assets/js/bootstrap-transition.js"></script>
<script src="assets/js/bootstrap-alert.js"></script>
<script src="assets/js/bootstrap-modal.js"></script>
<script src="assets/js/bootstrap-dropdown.js"></script>
<script src="assets/js/bootstrap-scrollspy.js"></script>
<script src="assets/js/bootstrap-tab.js"></script>
<script src="assets/js/bootstrap-tooltip.js"></script>
<script src="assets/js/bootstrap-popover.js"></script>
<script src="assets/js/bootstrap-button.js"></script>
<script src="assets/js/bootstrap-collapse.js"></script>
<script src="assets/js/bootstrap-carousel.js"></script>
<script src="assets/js/bootstrap-typeahead.js"></script>
</body>
</html>