Allow public access to a file in a protected directory using .htaccess Updated on August 16, 2021 by Scott Mitchell 1 Minutes, 48 Seconds to Read Within your website structure, there are many times when you may want to protect directories from outside access. This prevents any user from accessing a subdirectory of your site, and its files, without a username and password. There may be a time, however, when you want to allow access to a single file within a password directory and it is not feasible to move the file to an unprotected directory or folder. The instructions below will guide you in how to allow access to a single file in a password protected directory using your .htaccess file. How to allow access to a file in a protected directory Log into your cPanel dashboard. Access the File Manager under the Files section and navigate to the password protected folder. Make sure you enable the ability to show hidden files by clicking Settings at the top right and clicking the check box for Show Hidden Files (dotfiles). Within the password protected folder will be an .htaccess file that contains the security code to activate the password popup. Highlight the .htaccess file and click on the Edit icon from the toolbar across the top of the page. Once inside the editor, you will see the security code. It will appear similar to the example below. Our example directory was test, so attempting to access inmotiontesting.com/test resulted in a popup box asking for username and password. AuthName "test-protect"AuthUserFile "/home/userna5/.htpasswds/public_html/test/passwd"AuthType Basicrequire valid-user You will need to add the following code for each file you want to allow access to after the code above. In this example, we are allowing access to a file named test.php. Note the before the . in the filename and the $ at the end. You will want to do this for your file name as well to ensure access is given to that exact file. <filesmatch "test.php$"="">Satisfy AnyAllow from all Click on the Save Changes button in the upper right corner to finalize and activate the code. Now you will be able to access the specific file named test.php but no other files within that directory. Share this Article Related Articles How to Fix the “550 No Such User Here” Email Error What is Node.js? How to Deploy Websites Generated by AI Builders on Your Server How to Use robots.txt Disallow to Block Crawlers and Protect Site Performance Content Security Policy (CSP) Headers – Complete Reference Guide Troubleshooting SSL Connection Errors: How to Fix HTTPS Issues How to Check and Repair a Database in phpMyAdmin 21 Reasons Your Website is Slow and How to Speed it Up Website Transfer Resources Ensure a Successful Website Transfer