网站内页怎么设置301跳转
http://111.com/shh/4553.html,这个文章页如何跳转到 https://www.111.com/shh/4553.html
function 事件触发(){
location.href = "https://www.111.com/shh/4553.html";
}
用匿名函数
(function() {
location.href = "https://www.111.com/shh/4553.html";
}());