我有一个静态单页网站,但我正在尝试弄清楚如何“链接”到页面的每个部分,从而提供唯一的URL并能够在浏览器历史记录中显示。
我甚至不知道从哪里开始 - 我尝试过.htaccess:
RewriteEngine On
RewriteRule ^services/?$ /index.html#services [NE,R]
然而,URL更新为#而不是保留/ services /链接(尽管它确实正确重定向)。
显然这不是解决方案,因为
答案 0 :(得分:0)
如果需要内部重定向,则需要删除R标志:
RewriteEngine On
RewriteRule ^services/?$ /index.html#services [NE,L]