是否可以使用相同的域名发布两个网站,一个在 JSP 中,另一个在 ASP.net 中?

发布于 2024-09-05 01:44:40 字数 106 浏览 2 评论 0原文

我想发布两个不同的网站,一个在 JSP 中,另一个在 ASP.net 中,具有相同的域名,因为我正在开发 asp.net 网站,并且我想添加 jsp 的一些功能,所以我将在 jsp 中设计这些功能。

I want to publish two different websites one in JSP and another in ASP.net with same domain name because I am working on asp.net site and i want to add some features of jsp so i will design these features in jsp.

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

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

发布评论

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

评论(1

随波逐流 2024-09-12 01:44:40

通过正确配置服务器,您可能可以向一个应用程序或另一个应用程序发送请求。您还必须考虑如何在应用程序之间共享会话等。

我可能会向两个应用程序添加一些基本 URL,并使用它使服务器将请求重定向到正确的应用程序:

  • ASP.NET app: your.domain.com/asp/
  • J2EE app: your.domain.com/j2ee/

在 asp/j2ee 部分上设置重写条件,并执行您通常执行的操作来处理请求。

With proper configuration of your server you could probably send requests to either one app or the other. You'd also have to consider how sessions are supposed to be shared between the applications etc.

I'd probably add some base-url to both applications, and use this to make the server redirect the request to the correct app:

  • ASP.NET app: your.domain.com/asp/
  • J2EE app: your.domain.com/j2ee/

Have a rewrite-cond on the asp/j2ee parts and do what you'd normally do to serve the request.

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