前端开发实现网站自动添加www
2023-09-03 本文已影响0人
前端组件分享
在前端工程的入口页面增加以下代码:
mounted() {
console.log("herf = " + window.location.href);
if (window.location.href == 'https://example.com/') {
window.location.href = 'https://www.example.com/'
}
},
在前端工程的入口页面增加以下代码:
mounted() {
console.log("herf = " + window.location.href);
if (window.location.href == 'https://example.com/') {
window.location.href = 'https://www.example.com/'
}
},