koajs / discussions

KoaJS Discussions
2 stars 2 forks source link

Error jump URL when ctx.path is directory #40

Open ycg520520 opened 4 years ago

ycg520520 commented 4 years ago

eg: app -> index.html, h5.html index.html:

   if(isMobile){
      window.location.href = './h5.html'
    }else{
      window.location.href = './pc.html'
    }

error URL: isMobile(http://localhost/app => http://localhost/h5.html) right URL: http://localhost/app/ => http://localhost/app/h5.html