Skip to content
Read For Learn
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP

Restrict PDF links

You cannot restrict users from downloading a file from a path using a wordpress login for various reasons, the most important is that the WP login is handled by PHP while the download is handled via Apache.

That said, there is a way to achieve the result of what you’re after. What you need to do is write a custom download handler for your PDFs. There are various ways to do this, but they will resemble something like this.

function downloadPDF(){
    if(!is_user_logged_in(){
        //do your user isn't logged in logic here
    }
    else{
        $path = WP_CONTENT_DIR . '/path/to/pdf'; //The path to the pdf file that you want to access.
        if(file_exists($path)){ //check to make sure the file exists
            header('Content-Description: File Transfer');
            header('Content-Type: application/pdf');
            header('Content-Disposition: attachment; filename="'.end(explode("https://wordpress.stackexchange.com/",$path).'"');
            header('Content-Transfer-Encoding: binary');
            header('Expires: 0');
            header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
            header('Pragma: public');
            header('Content-Length: ' . filesize($path));
            readfile($path);
            exit();
        }
        else{
            //do your invalid file logic here
        }
    }

}

What is happening here is, it checks to see if a user is logged in. If so, it checks to see if a file exists and if it does serve it for download.

Note, this is an extremely basic skeleton of what you need to do. You will need to make this function fire when someone attempts to download a pdf (possibly with an .htaccess rule + action hook, but there are other ways).

Related Posts:

  1. How to restrict access to a single for users I’ve authorized? [closed]
  2. Requiring login for specific pages
  3. Require re-login when logged-in user attempts to access restricted page
  4. force login loophole
  5. URL Restrictions? Need only people who are logged in AND have a specific role (or roles) to access all pages for a site
  6. In Django, how do I know the currently logged-in user?
  7. Can I programmatically login a user without a password?
  8. Can’t log in: “ERROR: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress.”
  9. Is there any way to rename or hide wp-login.php?
  10. How to login with email only no username?
  11. How can I redirect user after entering wrong password?
  12. Increase of failed login attempts, brute force attacks? [closed]
  13. Login page ERROR: Cookies are blocked due to unexpected output
  14. Separate registration and login for different roles
  15. SSO / authentication integration with external ‘directory service’
  16. Preventing session timeout
  17. How reduce wordpress login session timeout time?
  18. How to prefill WordPress registration with social details
  19. Check for correct username on custom login form
  20. Disallow user from editing their own profile information
  21. I can’t access my site via wp-admin
  22. ‘Password field is empty’ error when using autofill in Chrome
  23. Removing username from the ‘wordpress_logged_in’ cookie
  24. How to show ‘login error’ and ‘lost password’ on my template page?
  25. What is $interim_login?
  26. Custom login form
  27. How to prefill the username/password fields on the login page
  28. wp_signon returns user, but the user is not logged in
  29. Adding extra authentication field in login page
  30. Prevent wp_login_form() from redirecting to wp-admin when there are errors
  31. Redirect user using the ‘wp_login_failed’ action hook if the error is ’empty_username’ or ’empty_password’
  32. wp_signon() does not authenticate user guidance needed
  33. What exactly is ReAuth?
  34. What are the differences between wp_users and wp_usermeta tables?
  35. Login members using web services
  36. Make my wordpress blog remember my login “forever”
  37. How to check in timber if user is loggedin?
  38. How do I change the language of only the login page?
  39. Disable WordPress 3.6 idle logout / login modal window / session expiration
  40. Stop WordPress from logging me out (need to keep me logged in)
  41. Woocommerce registration page [closed]
  42. How to disable autocomplete on the wp-login.php page
  43. Share login data/cookies between multiple installations
  44. Synchronize WordPress user accounts across multiple domains and installations without using WordPress MU
  45. How to pass users back and forth using session data?
  46. How do I change the logo on the login page?
  47. Why does WordPress hide the reset password key from the URL?
  48. Is it possible to sign in with user_email in WordPress?
  49. How to use current_user_can()?
  50. Avoid to load default WP styles in login screen
  51. WordPress registration message
  52. How to fake a WordPress login?
  53. how to display the wordpress login and register forms on a page?
  54. Does wp_logout_url() destroy a session? (Logging out question)
  55. How can I send a welcome email to a user AFTER they login for the first time?
  56. Can not login with correct username and password
  57. Website Visible only to Registered users
  58. How can i increase the login expiration length?
  59. How do I use add_action from a class method?
  60. How to remove the WordPress logo from login and register page?
  61. How can I add a custom script to footer of login page?
  62. Brute force attack?
  63. Customize wp_new_user_notification_email()
  64. Need to execute a cron job
  65. Login email after registration never sent or received
  66. How can I create a separate blog that is private?
  67. How to keep always logged in development environment
  68. Add Confirm Password field in wp-login.php Password Reset page
  69. Integrate recaptcha and wp_signon – what is needed?
  70. Stop users from logging in from multiple locations
  71. I want to disable E-Mail verifcation / activation when a user signs up for my WordPress site
  72. custom login page redirect to logged in user profile page
  73. Email address or username used to login in wordpress
  74. How do I check if a post is private?
  75. Front-end login: Redirect user to the post they had created
  76. Receiving “This content cannot be displayed in a frame” error on login page
  77. My login form does not work
  78. Programmatically log in a wordpress user
  79. Action wp_login_failed not working if only one field is filled out
  80. Getting “Cookies are blocked or not supported by your browser” on login page
  81. What is the purpose of logging out after WordPress upgrade?
  82. Is it alright for two people to simultaneously be logged into a WP site as administrator?
  83. wp-login.php redirecting to HTTPS
  84. Display last login time
  85. How to customise wp-login.php only for users who are setting a password for the first time?
  86. Intentionally Force Failed Login WordPress
  87. How do I turn off the ability to login?
  88. Gaining Login Access via the Database
  89. How can I test the login for an expired session?
  90. Give visitor access to password protected page/post via external script
  91. Send reset password link to user from custom lost password form
  92. What hooks should I use for pre-login and pre-registration actions?
  93. WordPress Login Footer URL
  94. setting a specific home page for logged in users
  95. Remove built in wordpress login and use only google auth
  96. Websites defaced by uploading script using theme editor
  97. wp_login action hook not working
  98. Make wordpress admin failed login attempt return 401
  99. Cookie settings for session across WPML subdomains using custom AJAX login
  100. How to translate “wrong password” message
Categories login Tags content-restriction, login, pdf
Conditions for Users and Visitors
Is there a way to pull the first featured image in a loop and not all other featured images?

Recommended Hostings

Cloudways: Realize Your Website's Potential With Flexible & Affordable Hosting. 24/7/365 Support, Managed Security, Automated Backups, and 24/7 Real-time Monitoring.

FastComet: Fast SSD Hosting, Free Migration, Hack-Free Security, 24/7 Super Fast Support, 45 Day Money Back Guarantee.

Recent Added Topics

  • Bug in translation system: load_theme_textdomain() returns true, files are available and accessible but the language defaults to english
  • Custom Elementor controls not appearing in the widget Advanced tab using injection hooks
  • Get the name of the template/*html file used
  • Trying to Add Paging to Single Post Page
  • Sharing media files between live and staging servers
  • How to display the description of a custom post type in the dashboard?
  • Critical error on image display
  • Copying WP data and files into new install?
  • How to determine the DirectAdmin WordPress backup date?
  • How to get list of ALL tables in the database?
© 2026 Read For Learn
  • Database
    • Oracle
    • SQL
  • algorithm
  • asp.net
  • assembly
  • binary
  • c#
  • Git
  • hex
  • HTML
  • iOS
  • language angnostic
  • math
  • matlab
  • Tips & Trick
  • Tools
  • windows
  • C
  • C++
  • Java
  • javascript
  • Python
  • R
  • Java Script
  • jQuery
  • PHP
  • WordPress