我正在尝试删除切换手风琴面板时使用的锚标记或包含指向页面另一部分的锚点的链接。http://rivo.wpengine.com/why-rivo/#toggle-id-3 我想要...
我正在尝试删除切换手风琴面板时使用的锚标记或包含指向页面另一部分的锚点的链接。
http://rivo.wpengine.com/why-rivo/#toggle-id-3
我想删除 #toggle-id-3
这个 URL 的一部分。
我可以对该 .htaccess
文件做些什么吗,也许使用 mod_rewrite?
您无法使用 htaccess 或 mod_rewrite 删除 URL 片段,因为它们 永远不会发送到服务器 。就服务器而言,它们不存在。您需要使用 javascript 或其他客户端解决方案来删除它们。
例如,来自: 使用 JavaScript 删除 URL 中的片段而不会导致页面重新加载
// remove fragment as much as it can go without adding an entry in browser history:
window.location.replace("#");
// slice off the remaining '#' in HTML5:
if (typeof window.history.replaceState == 'function') {
history.replaceState({}, '', window.location.href.slice(0, -1));
}