Java Web 应用程序:防止将斜杠添加到路径中?

发布于 2024-11-06 07:42:23 字数 169 浏览 2 评论 0原文

如果我在 uri /myapp 下运行 Web 应用程序,那么一旦通过 http://example.com/myapp 访问该应用程序,URL 就会更改为 http://example.com/myapp/。有什么办法可以防止这种情况发生吗?

If I run a webapp under the uri /myapp then as soon as the app is accessed via http://example.com/myapp, the URL changes to http://example.com/myapp/. Is there any way to prevent this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁对谁错谁最难过 2024-11-13 07:42:23

当您出现这种行为时,您的 Web(或应用程序)服务器会

301 Moved Permanently

在请求不带斜线的 URL 时返回 。

获取 http://www.google.es/services 时,您可以看到类似的示例

HTTP/1.1 301 Moved Permanently
Location: http://www.google.es/services/
Content-Type: text/html; charset=UTF-8
X-Content-Type-Options: nosniff
Date: Wed, 11 May 2011 15:24:06 GMT
Expires: Fri, 10 Jun 2011 15:24:06 GMT
Cache-Control: public, max-age=2592000
Server: sffe
Content-Length: 227
X-XSS-Protection: 1; mode=block

在第一个 HTTP 之后 访问 http://www.google.es/services
(不带斜线),浏览器会进行第二次 HTTP 访问 http://www.google.es/services/< /a>(带斜线)。例如,您可以使用 Firebug 中的“网络”选项卡跟踪 HTTP 请求。

您可以检查您的网络/应用程序服务器配置,也许您可​​以更改此行为。

When you have such a behaviour your web (or application) server returns a

301 Moved Permanently

when the URL without slash is requested.

You can see a similar example when getting http://www.google.es/services

HTTP/1.1 301 Moved Permanently
Location: http://www.google.es/services/
Content-Type: text/html; charset=UTF-8
X-Content-Type-Options: nosniff
Date: Wed, 11 May 2011 15:24:06 GMT
Expires: Fri, 10 Jun 2011 15:24:06 GMT
Cache-Control: public, max-age=2592000
Server: sffe
Content-Length: 227
X-XSS-Protection: 1; mode=block

After this first HTTP get to http://www.google.es/services
(without slash), the browser makes a second HTTP get to http://www.google.es/services/ (with slash). You can trace the HTTP requests with Network tab in Firebug, for example.

You can check your web/application server configuration, and maybe you can change this behaviour.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文