如何在 Activeweb 中设置链接?
How to set up links in Activeweb?
初始申请url是
http://localhost:8080/activeweb-bootstrap-custom/
freemarker 的模板link 看起来像
href="/test"
问题是当我单击 link 然后应用程序 url 变为
http://localhost:8080/test。
显然应用程序名称丢失了。
如何设置应用程序以完整 url 打开 links? link 应该是
http://localhost:8080/activeweb-bootstrap-custom/test
您所拥有的与ActiveWeb或Freemarker无关。任何 JSP 或普通 HTML 都一样。
当您的第一个字符是“/”时,浏览器会创建一个指向根上下文的新 URL。只需删除正斜杠以指向当前位置:
<a class="btn btn-lg btn-success" href="test" role="button">test controller</a></p>
发送
初始申请url是
http://localhost:8080/activeweb-bootstrap-custom/
freemarker 的模板link 看起来像
href="/test"
问题是当我单击 link 然后应用程序 url 变为 http://localhost:8080/test。 显然应用程序名称丢失了。 如何设置应用程序以完整 url 打开 links? link 应该是
http://localhost:8080/activeweb-bootstrap-custom/test
您所拥有的与ActiveWeb或Freemarker无关。任何 JSP 或普通 HTML 都一样。
当您的第一个字符是“/”时,浏览器会创建一个指向根上下文的新 URL。只需删除正斜杠以指向当前位置:
<a class="btn btn-lg btn-success" href="test" role="button">test controller</a></p>
发送