我已注册域名。 www.mydomain.com。我在我的网站上提供了一些付费内容。此域的所有端口上的所有请求都指向Azure Linux VM中部署的tomcat服务器。我需要将此应用程序迁移到另一个PaaS平台,而不会影响现有的消费者。我想首先确保现有用户明年用完他们的订阅,并且在续订时我可以将他们迁移到新系统。(给他们新的链接)。 但是现在所有新的消费者都需要指向具有相同域名的新后端系统。 www.mydomain.com。 是否可以根据路径转移流量?例如 www.mydomain.com/oldcontent将指向azure vm,而www.mydomain.com/newcontent指向新的PaaS运行时。
答案 0 :(得分:0)
如果Apache httpd在tomcat之前没有作为代理服务,则您无法使用function insert()
{
var imgDestination = document.getElementById("containerRight");
var imgAdded = document.createElement("img");
imgAdded.src = "smiley.png";
imgDestination.appendChild(imgAdded);
ImgRandomPosition(imgAdded);
}
function ImgRandomPosition(imgAdded)
{
var left = Math.floor((Math.random() * 400) + 1)+"px";
var top = Math.floor((Math.random() * 400) + 1)+"px";
var imagestyle = imgAdded.style;
imagestyle.position = "absolute";
imagestyle.top = top;
imagestyle.left = left;
}
。如果您正在寻找类似于Apache的mod_rewrite的东西,那么请尝试UrlRewriteFilter,然后您将静默尝试URL重写,转发/重定向或URL屏蔽。