X-Frame-Options

ju.em.borges

New member
Joined
Mar 22, 2015
Messages
1
Hi Friends,
How can I disable X-Frame-Options SAMEORIGIN for my domain?
I want to allow access to a specific domain.
Thank you!
 
did you find a solution? i am looking for the same.
you can set it in the default httpd config. but this is adding and we need to replace
 
the the one that searches for this one, it seems allow-from is obsolete.
use this in stead:

Code:
|*if DOMAIN="remote.domain.nl"|
Header set Content-Security-Policy "frame-ancestors https://thelocalwebsitethatneedstheiframe.nl"
|*endif|
 
Back
Top