在Javascript中使用PHP设置标头

时间:2015-02-11 16:47:24

标签: javascript php redirect http-headers

我试图

  • 进行PHP 302重定向,
  • 设置Vary标头和
  • 设置X-Robots标记

取决于屏幕宽度。我的代码片段是

 <script language="javascript">
  if ( $(window).width() < 480 )
   {
     <?php
       {
        header('Vary: User-Agent');
        header("Location:'$_SERVER['REQUEST_URI'].'/index_mobile.html", true, 302);
        header("X-Robots-Tag: noindex,nofollow");
       }
     ?>
   }
 </script>

我没有使用简单的Javascript重定向,因为我必须设置Vary标头,另外重定向必须明确为302。

但看起来,这段代码并不起作用。有人知道,我是如何实现这些目标的?

谢谢!

0 个答案:

没有答案