-1

There is an apache server hosting some website written in PHP and is accessible thru internet. How do configure the apache to resolve 'Missing Cross-Frame Scripting Defence' and can 'Missing Cross-Frame Scripting Defence' warning be ignored?

Jedi
  • 3,906
  • 2
  • 24
  • 42
user275517
  • 107
  • 3

1 Answers1

1

You need to send an X-Frame-Options header, usually with the value "sameorigin". You can do this in Apache using mod_headers, something like:

Header set X-Frame-Options sameorigin
paj28
  • 32,736
  • 8
  • 92
  • 130