Facing issues with azure, Wordpress builder not working x-frame option
There is one issues with azure any Wordpress site builder not working due to X-Frame Option deny : https://prnt.sc/16q7mv1
Facing issues with azure, Wordpress builder not working x-frame option
There is one issues with azure any Wordpress site builder not working due to X-Frame Option deny : https://prnt.sc/16q7mv1
Just checking in to see if the below answers helped. If this answers your query, do click “Accept Answer” and Up-Vote for the same. And, if you have any further query do let us know.
Thanks for asking question! You might be aware of that the X-Frame-Options header is used for HTTP security response header is used to communicate to the browser whether it can render a page in a <frame>/<iframe>.
The header can be set to one of the following values:
• deny – The page in a frame will not be displayed. This is the default and recommended setting.
• sameorigin – The page will only be displayed in the frame if the origin is the same as the origin of the web page. The option is not very useful unless all ancestors are also in the same origin.
• allow-from - The page will only be displayed in the frame if the origin (eg, https://www.".com) matches the specific origin in the header. This may be supported by limited browsers.
If you want the page to be displayed in the frame if the origin is the same as the origin of the web page, then in your application you have to add the following tag in web.config
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="X-Frame-Options" value="SAMEORIGIN" />
</customHeaders>
</httpProtocol>
</system.webServer>
Refer to this blog link might be helpful: WordPress Best Practices for Security
Let us know if further query or issue remains.
12 people are following this question.