我试图
取决于屏幕宽度。我的代码片段是
<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。
但看起来,这段代码并不起作用。有人知道,我是如何实现这些目标的?
谢谢!