Replies: 1 comment 3 replies
-
Does that static file exist ? Also I think you will need to do a forward or redirect. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I know this is likely intended behavior, hence not opening a ticket but a Q/A.
When a request comes in, I need to try and serve a static HTML file of the same name. My first try is to just add
.html
at the and of the path in a prematching filter.However, Quarkus still resolves the old path without the
.html
suffix.Here's the filter (simplified):
Log Output:
Why is Quarkus telling me the path is still
/dashboard
when I replaced it with/dashboard.html
?Beta Was this translation helpful? Give feedback.
All reactions