//Javascript代码,用于重定向博客帖子的url到另一个url。//已经为移动设备选择了Desktop主题
<script type = "text/javascript">
if(window.location.href == 'https://example.blogspot.com/2021/03/blog-post.html') {
document.location = "https://amazon.com/";
if (screen.width < 699) {
document.location = "https://amazon.com/";
}
}
</script>
//如果你能提供代码将post url重定向到另一个url,那将非常有帮助。
代替screen.width
试试window.innerWidth
,代替document.location
试试window.location