Snap Builder Public Codes Library
Snap | Generators | Login | Browse | Search | Enter Code | Export Snap Builder Public Codes Library

 

Category: >> .HTACCESS Codes Library >> Allow Single URL Through .htaccess Password Protection


Code Snippet </> Info


Snippet Name: Allow Single URL Through .htaccess Password Protection

Description: This code is useful for multi environment setups (staging, production, etc.) it allows you to keep your .htaccess files in sync while maintaining an .htpasswd on your development environment or anything but the live environment.

Note:

Author:

Last Modified: 2014-05-17 21:54:11

Language: .htaccess

Highlight Mode: html

Copy Codes: Use Free Notepad ++
Bookmark and Share

Snap HTML Code Editor:
Paste the source code, make changes and instantly see it in live preview.
Snap HTML Code Editor


  About Copying
Copied To Clipboard!

#allows a single uri through the .htaccess password protection SetEnvIf Request_URI "/testing_uri$" test_uri #allows everything if its on a certain host SetEnvIf HOST "^testing.yoursite.com" testing_url SetEnvIf HOST "^yoursite.com" live_url Order Deny,Allow AuthName "Restricted Area" AuthType Basic AuthUserFile /path/to/your/.htpasswd AuthGroupFile / Require valid-user #Allow valid-user Deny from all Allow from env=test_uri Allow from env=testing_url Allow from env=live_url Satisfy any


[ Snippet Options ]

 

© 2002 -  Snap Builder Public Codes Library