You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've deployed the Vaadin app in AWS S3, My current objective is to ensure that when I refresh the page, the child route refreshes without redirecting back to the home page.
To handle this in AWS S3, I've implemented conditional redirects for 404 errors. The configuration is as follows:
This setup effectively redirects any 404 errors with the specified key prefix to the designated hostname and protocol, replacing the key prefix with "ld#!/"
Now, my question is: does Vaadin support hash-based routing to further enhance this setup?
Thank you in advance for any insights or suggestions!
The text was updated successfully, but these errors were encountered:
I've deployed the Vaadin app in AWS S3, My current objective is to ensure that when I refresh the page, the child route refreshes without redirecting back to the home page.
To handle this in AWS S3, I've implemented conditional redirects for 404 errors. The configuration is as follows:
[ { "Condition": { "HttpErrorCodeReturnedEquals": "404", "KeyPrefixEquals": "ld" }, "Redirect": { "HostName": "[dev.mydomain.in](http://dev.mydomain.in/)", "Protocol": "https", "ReplaceKeyPrefixWith": "ld#!/" } } ]
This setup effectively redirects any 404 errors with the specified key prefix to the designated hostname and protocol, replacing the key prefix with "ld#!/"
Now, my question is: does Vaadin support hash-based routing to further enhance this setup?
Thank you in advance for any insights or suggestions!
The text was updated successfully, but these errors were encountered: