Skip to content

Instantly share code, notes, and snippets.

Created March 22, 2016 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/336eff3399c83c717912 to your computer and use it in GitHub Desktop.
Save anonymous/336eff3399c83c717912 to your computer and use it in GitHub Desktop.
Setze den X-Frame-Options Header
<?php
// Raw header
X-Frame-Options: sameorigin
// How to send the response header with PHP
header("X-Frame-Options: sameorigin");
// How to send the response header with Apache (.htaccess)
<IfModule mod_headers.c>
Header set X-Frame-Options "sameorigin"
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment