是否可以为两个不同的wordpress项目显示相同的地址URL或主页URL。我的意思是说任何人都可以为wordpress网站显示不同的地址网址。例如访客来到xyz.com并点击某个链接是否可以显示xyz.com的abc.com。
答案 0 :(得分:0)
是的,您需要在.htaccess文件中进行重定向。
this.canvas.addEventListener('mousemove', function (e) {
var canv = document.getElementById("some");
myGameArea.x = (e.clientX - this.canvas.getBoundingClientRect().left);//Look at this.canvas
myGameArea.y = (e.clientY - this.canvas.getBoundingClientRect().top);//Look at this.canvas
}.bind(this));
this.canvas.addEventListener('mousemove', (e) => {
var canv = document.getElementById("some");
myGameArea.x = (e.clientX - this.canvas.getBoundingClientRect().left);//Look at this.canvas
myGameArea.y = (e.clientY - this.canvas.getBoundingClientRect().top);//Look at this.canvas
});