Wordpress 플러그인 API로 .htaccess를 편집하시겠습니까?
.htaccess 파일을 변경해야 하는 워드프레스 플러그인을 쓰고 싶습니다.PHP에서 어떻게 하면 될까요?다른 플러그인으로 이 작업을 하는 것을 본 적이 있습니다만, 그 방법을 알 수 없습니다.감사합니다!
wordpress에 있는 기능으로,.htaccess
파일:insert_with_markers
세 가지 매개변수가 필요합니다.
insert_with_markers ( string $filename, string $marker, array|string $insertion )
이 튜토리얼에 따라 당신은 다음과 같은 것을 쓸 수 있다.
// Get path to main .htaccess for WordPress
$htaccess = get_home_path().".htaccess";
$lines = array();
$lines[] = "RewriteBase /foobar";
insert_with_markers($htaccess, "MyPlugin", $lines);
네 옷에선 이렇게 생겼을 거야.htaccess
파일
# BEGIN MyPlugin
RewriteBase /foobar
# END MyPlugin
다음은 해당 기능에 대한 워드프레스의 설명서에 대한 링크입니다.
https://developer.wordpress.org/reference/functions/insert_with_markers/
언급URL : https://stackoverflow.com/questions/36180339/edit-htaccess-with-wordpress-plugin-api
'programing' 카테고리의 다른 글
XmlDocument - 문자열에서 로드하시겠습니까? (0) | 2023.02.15 |
---|---|
개체를 JSON에 직렬화하는 방법 (0) | 2023.02.15 |
봄 MVC 3에서는 ModelAndView를 반환하면서 쿠키를 작성하는 방법은 무엇입니까? (0) | 2023.02.15 |
다중 인수가 있는 각도 ng-if=" (0) | 2023.02.15 |
형태와 함께 Proptype 배열 반응 (0) | 2023.02.15 |