我在另一个托管上的openshift托管和网站域名(example.com)上有一个网站(example-example.rhcloud.com)。我已将网站example.com重定向到example-example.rhcloud.com。
如果我从移动设备访问example-example.rhcloud.com,它可以正常工作并打开该网站的移动版本。但是,当我从移动设备访问example.com时,它会被重定向到example-example.rhcloud.com,但会打开网站的常规版本。
可能是什么问题?
以下是example.com页面的代码
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title>Example</title>
</head>
<frameset cols="100%,*" frameborder="no" border="0" framespacing="0">
<frame name="SiteShowFrame" src="http://example-example.rhcloud.com/">
</frameset>
<noframes>
<body>
Your browser doesn\'t support frames
</body>
</noframes>
</html>
重定向的网站加载到框架内。这可能是移动设备的问题吗?