我要将文件夹链接到自定义URL。
例如,我有一个文件夹:C:\testFolder
我想要这样:当您输入http:\\localhost:8080\myFolder时,tomcat实际上显示testFolder
有可能吗?
谢谢你

最佳答案

编辑位于tomcat_home/conf下的server.xml
它包含如下标签:

 <Host name="localhost"  appBase="webapps"
        unpackWARs="true" autoDeploy="true"
        xmlValidation="false" xmlNamespaceAware="false">

appBase的值更改为C:/testFolder
注意我用的刀子。使用正斜杠,尽管你在Windows上。

07-26 04:11