-
I've a simple controller with a However, I'd like to redirect to a specific location in my page (= an anchor). Is there a way to do it with |
Beta Was this translation helpful? Give feedback.
Answered by
yusukebe
Aug 14, 2023
Replies: 1 comment 1 reply
-
Hi. Which runtime do you run your app? I've tested the following app on Cloudflare/Wrangler and this works well. It is redirected to app.get('/', (c) => {
return c.redirect('/foo#bar')
}) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
charnould
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi.
Which runtime do you run your app?
I've tested the following app on Cloudflare/Wrangler and this works well. It is redirected to
http://localhost:8787/foo#bar
.