function Dis(){
var allDiv=document.getElementsByTagName("div")
for(var i=0,len=allDiv.lengthi<leni ){
var reg = /^(post_)(\d*)$/
if(reg.test(allDiv[i].getAttribute("id"))){
var allSub=allDiv[i].getElementsByTagName("a")
for(var j=0,zen=allSub.lengthj<zenj ){
if(allSub[j].getAttribute("class")=="xw1"){
allDiv[i].style.display ="none"
}
}
}
}
}
springboot项目,想通过url后缀区分不同的项目服务比如,localhost/login1 和 localhost/login2 进入的是不同的项目服务
这里是通过nginx拦截url对不同url后缀进行不同的端口转发
上图配置后,api访问没问题,但是资源文件无法访问
这是因为资源文件也被重定向到localhost/xiao/css/jq.js(正确的应该是localhost/css/jq.js)
这个时候就需要对项目下的资源文件进行过滤并重定向了,完整配置如下