Python模糊查询本地文件夹去除文件后缀 import os,re def fuzzy_search(path): word= input('请输入要查询的内容:') for filename in os.listdir(path): #遍历指定文件夹 re_filename = re.findall('.\w+', str(filename)) #去除文件后缀名 if word in re_filename[0]: print(re_filename[0])…
问题描述 添加一个新模块,部署在服务器上.服务器上还部署有其他模块且访问正常,新模块和其他模块共用同一个域名.服务部署之后,请求如下: http://my.domain.com/test/index.jsp 返回 Not Found The requested URL /test/index.jsp was not found on this server. 解决步骤 登入服务器,查看tomcat的webapp目录下,发现有test目录和/test/index.jsp文件. 查看/tomcat/…