Last active
January 12, 2022 09:53
-
-
Save danielmcclure/6af83ed9100c765e3184f5d71179d21a to your computer and use it in GitHub Desktop.
How to Remove Conflicting X-FRAME-OPTIONS Headers via .htaccess on Apache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Select one of the following options - Security decreases from top to bottom. | |
Header append X-FRAME-OPTIONS "DENY" | |
Header append X-FRAME-OPTIONS "SAMEORIGIN" | |
Header append X-FRAME-OPTIONS "ALLOW-FROM https://example.com/" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, not sure where I picked that up from but will remove.