|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stop making mediocre tutorials.The best tutorials are video! Camtasia Studio makes it easy to create engaging, buzz-building screen videos at any size, in any popular format. Download the free trial!
|
|
#1
|
|||
|
|||
|
general - .htaccess how to require authn for all files ina folder, besids certain file extentn
.htaccess how to require authn for all files ina folder, besids certain file extentns
.htaccess, how to require authentication for files in a folder, besides certian file extentions? hey guys, been trying this for about 24 hours now, and im just really beat.. ![]() im using apache2, and i been to a couple sites such as the apache doc site, and no help at all(as in nothing i try works). What i want to do is, require authencation for all files in a directory execpt certain files with a particular extention, allowing all files but some extentions. so im attempting to add restriction for all files, and then trying to single out files with a particular extention and remove the require clause...not working though ![]() i have a folder with some jpgs in it, and some folders with other files, and also jpgs, i will be linking those jpgs from other sites, so i need then to not require authentication, however, all the other files in the doc root i need to set authentication for. this is what i have so far. <Directory /home/www/shared/> <Files *> AuthType Basic AuthName "This is a restriced site" AuthUserFile /pass/a AuthGroupFile /pass/g Require group GroupName </Files> #also tried saying overide none and placing the below in a .htaccess fle in the root dir <FilesMatch "\.jpg$"> #<Files ~ "\.(jpg)$"> #<Files *.jpg> Satisfy any #Require none #i dont think this call (none) even exists, but i still tried it. #Order deny,allow Allow from all #</Files> </FilesMatch> #some other config info here </Directory> can some please help me, or perhaps suggest a link, or a better solution to my problem thankx in advance. |
|
#2
|
||||
|
||||
|
Welcome to Dev Shed.
I'm assuming that you can access the website when there's no authentication involved at all, which would mean that the server config, DocumentRoot, and Allow directives are all in place and correct ![]() Code:
/home/www/shared/.htaccess
AuthType Basic AuthName "This is a restricted website." AuthUserFile /pass/a AuthGroupFile /pass/g Require group GroupName <FilesMatch "\.jpg$"> # assumes: # Order deny,allow # Allow from all # in parent configuration Satisfy Any </FilesMatch>
__________________
# Jeremy Explain your problem instead of asking how to do what you decided was the solution. |
|
#3
|
|||
|
|||
|
much thankx for your reply
here is what i did...it seems to work as well, im not sure why it didnt work earlier, all i did was have a nap, and gave the server a kick. <FilesMatch "\.jpg$"> Satisfy any Allow from all </FilesMatch> both .htaccess, and placing in <directory> seems to work. thankx once again for your reply...i was so terribly fustrated. |
![]() |
| Viewing: Dev Shed Forums > System Administration > Apache Development > general - .htaccess how to require authn for all files ina folder, besids certain file extentn |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|