美文网首页
前端开发实现网站自动添加www

前端开发实现网站自动添加www

作者: 前端组件分享 | 来源:发表于2023-09-03 10:29 被阅读0次

在前端工程的入口页面增加以下代码:

mounted() {

      console.log("herf = " + window.location.href);

      if (window.location.href == 'https://example.com/') {

        window.location.href = 'https://www.example.com/'

      }

    },

相关文章

网友评论

      本文标题:前端开发实现网站自动添加www

      本文链接:https://www.haomeiwen.com/subject/jamfvdtx.html