이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

LH HSTS

설명

This plugin send the proper headers for full ssl security. For more information on what this is and why it is important visit: http://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security

The options are preset to enable browsers to preload the HSTS directive but can be overwritten by filters which are clearly documented in the code.

Did you find this plugin helpful? Please consider writing a review.

To update the max-age settings, add the following code to your functions.php

add_filter('lh_hsts_max_age', 'modify_ls_hsts_max_age_func');

function modify_ls_hsts_max_age_func( $max_age ){
    return false;
}
    `

To update the subdomain settings, add the following code to your functions.php

add_filter(‘lh_hsts_subdomain’, ‘modify_ls_hsts_subdomain_func’);

function modify_ls_hsts_subdomain_func( $subdomain ){
return false;
}
`

To update the preload setting, add the following code to your functions.php

add_filter('lh_hsts_preload', 'modify_ls_hsts_preload_func');

function modify_ls_hsts_preload_func( $preload ){
    return false;
}
    `

To update the redirect setting, add the following code to your functions.php

add_filter(‘lh_hsts_redirect’, ‘modify_ls_hsts_redirect_func’);

function modify_ls_hsts_redirect_func( $redirect ){
return false;
}
`

설치

  1. Upload the entire lh-hsts folder to the /wp-content/plugins/ directory.
  2. Activate the plugin through the ‘Plugins’ menu in WordPress.

FAQ

How do I change the behaviour of this plugin?

Through filters, all of which are commented in the code and will be documented below.

후기

2021년 1월 23일 답글 4개
Not only does this not work – YOU CANNOT DISABLE OR REMOVE HSTS after this plugin! I can’t access my website anymore, because this ‘author’ made it impossible to remove or disable hsts – I disabled and removed the plugin, cleared cache, rebooted the server – HSTS is still on!!!!!!
2019년 2월 21일 답글 1개
It does what it says and its a simple process. I haven’t had any issues thus far. Great job Asitha & Shaw Factor
2018년 3월 20일
Using with WordPress 4.9.4 and can verify the correct header is being set. Thanks!
2017년 9월 26일
Nice work! i was facing problem and this plugin fix this issue for me ,Thank you! “Not Authorized to View This Page [CFN #0004]”
모든 6 평가 읽기

기여자 & 개발자

“LH HSTS”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “LH HSTS”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

1.00 – February 28, 2016

  • 초기 릴리즈

1.10 – March 28, 2016

  • Use correct domain

1.11 – April 02, 2017

  • Added class exists check

1.20 – May 11, 2017

  • Just made everything look pretty and structured

1.21 – May 24, 2017

  • Bug fix

1.22 – January 10, 2018

  • Singleton pattern

1.23 – March 04, 2018

  • Fixed fiulter name

1.24 – August 19, 2018

  • get_home_url and other minor stuff

1.25 – May 16, 2019

  • pprevent direct access to the php file, minor security, and compatibility bump