There was an error while loading. Please reload this page.
Filter the htaccess file path.
/** * Filter the htaccess file path. * * @param string|false $htaccess_file * @return string|false The filtered value. */ function my_activitypub_litespeed_cache_htaccess_file_callback( string|false $htaccess_file ) { // Your code here. return $htaccess_file; } add_filter( 'activitypub_litespeed_cache_htaccess_file', 'my_activitypub_litespeed_cache_htaccess_file_callback' );
string|false
$htaccess_file
\apply_filters( 'activitypub_litespeed_cache_htaccess_file', $htaccess_file )
← All Hooks