I want to temporarily remove X-Frame-Options: SAMEORIGIN
and need to allow all domains.
I have already tried the following ways.
Removing
send_frame_options_header
from./wp-includes/default-filters.php
remove_action('login_init', 'send_frame_options_header');
Removing
@header( ‘X-Frame-Options: SAMEORIGIN’ );
from/wp-includes/functions.php
None of the above doesn't work.
PS: I don't use any security plugin either.
I want to temporarily remove X-Frame-Options: SAMEORIGIN
and need to allow all domains.
I have already tried the following ways.
Removing
send_frame_options_header
from./wp-includes/default-filters.php
remove_action('login_init', 'send_frame_options_header');
Removing
@header( ‘X-Frame-Options: SAMEORIGIN’ );
from/wp-includes/functions.php
None of the above doesn't work.
PS: I don't use any security plugin either.
Share Improve this question asked Oct 20, 2019 at 5:15 RanukaRanuka 1,7943 gold badges18 silver badges31 bronze badges1 Answer
Reset to default 6Check this question How does wordpress restrict X-FRAME to sameorigin?.
The questioner's issue was resolved by modifying his site's .htaccess file by adding the below line to it as his Web Host set the X-Frame-Option.
Header always unset X-Frame-Options
You can check if that works for you.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745067574a4609345.html
评论列表(0条)