如何将 slug 附加到具有历史 API 的根路径?

How to append slug to root path with history API?

目前URL是

example.com/properties/one/

通过调用 history.pushState

history.pushState('', '', `search/two`);

我得到了 slug

example.com/properties/one/search/two

预期结果:

example.com/search/two

问题是如何实现search/two slug被附加到根路径?

根据@evolutionxbox 的说法,添加正斜杠解决了问题。

history.pushState('', '', `/search/two`);