是否可以使用相同的域名发布两个网站,一个在 JSP 中,另一个在 ASP.net 中?
我想发布两个不同的网站,一个在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过正确配置服务器,您可能可以向一个应用程序或另一个应用程序发送请求。您还必须考虑如何在应用程序之间共享会话等。
我可能会向两个应用程序添加一些基本 URL,并使用它使服务器将请求重定向到正确的应用程序:
在 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:
Have a rewrite-cond on the asp/j2ee parts and do what you'd normally do to serve the request.