This might work in a Wordpress nginx server setup. Note that it has not been tested. 1. for the nginx config file (on wordpress root): # redirect all access to uploads and files directory through access checking script # in order to only grant logged in users access to privacy concerned media. # Exclude media starting with "public" in filename location ~* /wp-content/(?:uploads|gallery)/(?!.*public) { rewrite /wp-content/uploads/(.*)$ $scheme://$host/dl-file.php?file=$1 last; rewrite /wp-content/gallery/(.*)$ $scheme://$host/dl-file.php?g=1&file=$1 last; } 2. Put this (make a separate php file called dl-file.php) on the wordpress root: * @license GPL-3.0+ * @registry SPDX */ require_once('wp-blog-header.php'); wp_cookie_constants(); ob_end_clean(); ob_end_flush(); is_user_logged_in() || auth_redirect(); list($basedir) = array_values(array_intersect_key(wp_upload_dir(), array('basedir' => 1)))+array(NULL); $file = rtrim(isset($_GET[ 'g' ])?dirname($basedir).'/gallery/':$basedir,'/').'/'.str_replace('..', '', isset($_GET[ 'file' ])?$_GET[ 'file' ]:''); //this disallows access to the next-gen media gallery plugin just in case if (!$basedir || !is_file($file)) { status_header(404); wp_redirect(home_url()); exit(); } $mime = wp_check_filetype($file); if( false === $mime[ 'type' ] && function_exists( 'mime_content_type' ) ) $mime[ 'type' ] = mime_content_type( $file ); if( $mime[ 'type' ] ) $mimetype = $mime[ 'type' ]; else $mimetype = 'image/' . substr( $file, strrpos( $file, '.' ) + 1 ); status_header(200); header( 'Content-Type: ' . $mimetype ); // always send this if ( false === strpos( $_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS' ) ) header( 'Content-Length: ' . filesize( $file ) ); $last_modified = gmdate( 'D, d M Y H:i:s', filemtime( $file ) ); $etag = '"' . md5( $last_modified ) . '"'; header( "Last-Modified: $last_modified GMT" ); header( 'ETag: ' . $etag ); header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + 1800 ) . ' GMT' ); // Support for Conditional GET $client_etag = isset( $_SERVER['HTTP_IF_NONE_MATCH'] ) ? stripslashes( $_SERVER['HTTP_IF_NONE_MATCH'] ) : false; if( ! isset( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) ) $_SERVER['HTTP_IF_MODIFIED_SINCE'] = false; $client_last_modified = trim( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ); // If string is empty, return 0. If not, attempt to parse into a timestamp $client_modified_timestamp = $client_last_modified ? strtotime( $client_last_modified ) : 0; // Make a timestamp for our most recent modification... $modified_timestamp = strtotime($last_modified); if ( ( $client_last_modified && $client_etag ) ? ( ( $client_modified_timestamp >= $modified_timestamp) && ( $client_etag == $etag ) ) : ( ( $client_modified_timestamp >= $modified_timestamp) || ( $client_etag == $etag ) ) ) { status_header( 304 ); exit; } // If we made it this far, just serve the file readfile( $file );