Hi, I want to open one of my nopCommerce website as iFrame in another MVC application.

When I open other website, iFrame is not loading and it gives error in console.
chromewebdata/:1 Refused to display 'https://blackshop.themes.nopcypher.com/' in a frame because it set 'X-Frame-Options' to 'sameorigin'.

I changed below things in web.config file
X-XSS-Protection value form
 <add name="X-XSS-Protection" value="1; mode=block" /> 

to
<add name="X-XSS-Protection" value="0; " />

Removed/commented below line
<add name="X-Frame-Options" value="SAMEORIGIN" />  

but it not worked.
After I value from SAMEORIGIN to allow from website url
<add name="X-Frame-Options" value="ALLOW-FROM http://www.miframe.com/" />  

But no luck.
I also added below key but it not worked
<add key="CMSXFrameOptionsExcluded" value="/" />

also I removed all values from Content-Security-Policy key but it not worked.



Same thing I found it works in post, but at my side it not working.
Do we have any specific solution for this? Any help will be appreciate