Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于正常的重定向,它将类似于redirect_to root_path.
redirect_to root_path
我将如何重定向到类似:localhost:3000/#contact. 我不仅要重定向到根目录,还想重定向到根目录,还要重定向到根页面的联系人部分。
localhost:3000/#contact
这可能吗?
这应该有效:
redirect_to root_path(anchor: 'contact')