我创建了一个带有twitter bootstrap 3的响应式网站。我发现它在ie8中没有工作,所以我将推荐的文件html5shiv.min.js和respond.min.js添加到我的index.html。 当我明确访问www.exampleurl.com/index.html时,一切正常。只要我去www.exampleurl.com(它也显示了index.html的内容,如你所知),它就不再有用了。
我的文件夹结构如下所示:
website-folder-name
--bootstrap
----bootstrap.css
--css
----common.css
--de
----<all german sites>
--en
----<all english sites>
--img
----<all images>
--js
----common.js
----html5shiv.min.js
----jquery-1.11.3.min.js
----respond.min.js
--index.html
我的HTML代码如下所示:
<!DOCTYPE html>
<html lang="de">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-15" />
<!--IE Fix-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
My Website
</title>
<link rel="stylesheet" href="bootstrap/bootstrap.css">
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" />
<script src="js/jquery-1.11.3.min.js"></script>
<script src="bootstrap/bootstrap.min.js"></script>
<script src="js/common.js"></script>
<!--[if lt IE 9]>
<script src="js/html5shiv.min.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- bootstrap html code here -->
</body>
</html>
是否有人知道如何在我的exampleurl.com上考虑引导程序修复,而不仅仅是在子网站上。我不想使用htaccess文件从exampleurl.com重定向到exampleurl.com/index.html。当有人访问我的网站时,我希望他在exampleurl.com上,而不是“子网站”。
感谢您的帮助!