我想完全更改浏览器网址栏 用户正在访问页面
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来实现这一目标。