通过php重定向时,响应式设计被破坏了

时间:2017-03-14 11:40:30

标签: php redirect responsive-design

我有一个调查页面,从http://www.surveygizmo.com/s3/3424900/Test-survey-March-2017访问时,在移动设备上看起来很不错。然后,我尝试使用以下own domain上的以下php代码进行重定向:

Activity

然而现在响应式设计并不好看(尽管它适用于移动版本)。

我已经进行了两次测试,证实了这一点。

测试重定向:https://search.google.com/search-console/mobile-friendly?id=J4mlYOr8M-5JtfiIvRklLQ

测试默认值:https://search.google.com/search-console/mobile-friendly?id=_siROcWpr4cz7TOmsWuYPw

2 个答案:

答案 0 :(得分:2)

如果您必须解决提供商的frameset,我认为您必须使用javascript来解决它。它不像真正的重定向一样干净,我害怕。

使用以下代码替换重定向页面上的php脚本:

<html>
    <head>
        <script type="text/javascript">
            parent.location.href="http://www.surveygizmo.com/s3/3424900/Test-survey-March-2017";
        </script>
    </head>
</html>

答案 1 :(得分:0)

die()语句会干扰您的输出。请尝试以下方法:

<?php 
    header("Location: http://www.surveygizmo.com/s3/3424900/Test-survey-March-2017");
    exit();
?>