最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

php - Write toremove from default .htaccess file from plugin?

matteradmin2PV0评论

I'm working on a WordPress plugin, and I have a checkbox option to add cache control headers. I'd like to write to the htaccess file if the option is set to 1, else remove the new content.

I've been trying to achieve this using insert_with_markers() but to no avail. These are the functions I've been using:

function write_cache_control(){
    $htaccess = get_home_path().".htaccess";
    $lines = array();
    $lines[] = '<FilesMatch "\.(js|css|jpg|jpeg|gif|png|pdf|swf|svg|svgz|ico|ttf|ttc|otf|eot|woff|woff2|webp)$">';
    $lines[] = '<IfModule mod_headers.c>';
    $lines[] = 'ExpiresActive On';
    $lines[] = 'ExpiresDefault  "access plus 1 month"';
    $lines[] = 'Header set Cache-Control "public, immutable, max-age=2628000, s-maxage=2628000"';
    $lines[] = 'Header set Access-Control-Allow-Origin "*';
    $lines[] = '</IfModule>';
    $lines[] = '</FilesMatch>';
    insert_with_markers($htaccess, "Cache Control", $lines);
}

 

function clear_cache_control(){
    $htaccess = get_home_path().".htaccess";
    insert_with_markers($htaccess, "Cache Control", '');
}

I've tried hooking them into wp, init & wp_init but nothing seems to work. Is there something I'm missing? Should I be using WordPress' wp_rewrite or PHP's fread & fwrite or something along those lines?

I'm working on a WordPress plugin, and I have a checkbox option to add cache control headers. I'd like to write to the htaccess file if the option is set to 1, else remove the new content.

I've been trying to achieve this using insert_with_markers() but to no avail. These are the functions I've been using:

function write_cache_control(){
    $htaccess = get_home_path().".htaccess";
    $lines = array();
    $lines[] = '<FilesMatch "\.(js|css|jpg|jpeg|gif|png|pdf|swf|svg|svgz|ico|ttf|ttc|otf|eot|woff|woff2|webp)$">';
    $lines[] = '<IfModule mod_headers.c>';
    $lines[] = 'ExpiresActive On';
    $lines[] = 'ExpiresDefault  "access plus 1 month"';
    $lines[] = 'Header set Cache-Control "public, immutable, max-age=2628000, s-maxage=2628000"';
    $lines[] = 'Header set Access-Control-Allow-Origin "*';
    $lines[] = '</IfModule>';
    $lines[] = '</FilesMatch>';
    insert_with_markers($htaccess, "Cache Control", $lines);
}

 

function clear_cache_control(){
    $htaccess = get_home_path().".htaccess";
    insert_with_markers($htaccess, "Cache Control", '');
}

I've tried hooking them into wp, init & wp_init but nothing seems to work. Is there something I'm missing? Should I be using WordPress' wp_rewrite or PHP's fread & fwrite or something along those lines?

Share Improve this question asked Mar 26, 2019 at 16:56 AJTAJT 1871 silver badge11 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 2

Almost all of your code is correct. I didn't even know about the insert_with_markers function, and now I do, so thank you.

In return, I believe I have your solution.

get_home_path() is not defined when any of the hooks (init,wp, etc.) you mentioned are triggered. That function is defined in the admin-side "file.php", which as part of the admin dashboard side of things, has not yet loaded.

The hook admin_init, however, should serve you well, presuming you are making those .htaccess changes on the admin side. If not, you could either include wp-admin/includes/file.php manually, or use an alternate way of finding .htaccess, such as the constant ABSPATH (although they are not equivalent).

Using the admin_init hook on the first function you provided, I found the rules written to my .htaccess file the next time I loaded a page on the admin side.

By the way, you might want to do a check for current_user_can( 'edit_files' ) before allowing that code to run.

Post a comment

comment list (0)

  1. No comments so far