index.html
<!DOCTYPE html>
<html>
<head>
<title>Dashboard</title>
</head>
<body>
<iframe
style="width:100%; height:100%;"
src="https://ap-northeast-1.quicksight.aws.amazon.com/sn/embed/share/accounts/1111111111/dashboards/1111-222-3333-4444-55555555?directory_alias=myproject">
</iframe>
</body>
</html>
Case 1: home dashboard → click link another dashboard → click Back button browser → home dashboard (working fine)
Case 2: home dashboard → click action another dashboard(on visual) → click Back button browser → ap-northeast-1.quicksight.aws.amazon.com refused to connect.
I think because
Referrer Policy: strict-origin-when-cross-origin
Only sends the origin (the domain) of the referring URL, not the full path and query string.But both link another dashboard and action another dashboard have the same URL, why does Case1 work while Case2 is encountering an error? May you help me, please?