域名的URL在浏览器栏中更改,但不在内容中

时间:2016-11-15 06:20:53

标签: javascript php jquery html5 html5-history

我想完全更改浏览器网址栏 用户正在访问页面

www.example.com

但是网址栏说

www.abc.com

我已尝试过HTML 5的历史记录但只更改了域中的路径而不是整个URL。

window.history.pushState("object or string", "Title", "../www.good.com/new-url");
window.history.pushState('/www.good.com/new-url', '', '/www.good.com/');
window.history.replaceState( {} , '/www.good.com/new-url', '/www.good.com/new-url' );

以上所有三个都保留在我托管文件的同一个域中。

我准备使用任何PHP,jQuery或JavaScript来实现这一目标。

0 个答案:

没有答案