不以'/'开头丨‹base›标签指定路径

Exisi 2022-06-28 14:40:25
Categories: Tags:

示例

<html>

    <head>

      <base href="http://localhost:8080/page/" />

      <title></title>

    </head>

    <body>

      <a href="test/user.dao">发起请求</a>

    </body>

</html>

 

示例

<html>

    <head>

        <base href="http://${header['host']}${pageContext.request.contextPath}/" />

    </head>

    <body>

        <a href="test/user.dao">发起请求</a>

    </body>

</html>