programing

Wordpress 플러그인 API로 .htaccess를 편집하시겠습니까?

newsource 2023. 2. 15. 22:05

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