国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網站 > Apache > 正文

Apache設置禁止訪問網站目錄,目錄列表顯示文件

2024-08-27 18:22:30
字體:
來源:轉載
供稿:網友

默認apache在當前目錄下沒有index.html入口就會顯示目錄,讓目錄暴露在外面是非常危險的事,如下操作禁止apache顯示目錄,希望文章對各位有幫助.

進入apache的配置文件 httpd.conf 找到如下代碼:

Options Indexes FollowSymLinks 修改為:Options FollowSymLinks

其實就是將Indexes去掉,Indexes表示若當前目錄沒有index.html就會顯示目錄結構.

1. 禁止訪問某些文件/目錄,增加Files選項來控制,比如要不允許訪問 .inc 擴展名的文件,保護php類庫,代碼如下:

  1. <Files ~ ".inc$"
  2. Order allow,deny 
  3. Deny from all 
  4. </Files> 
 

禁止訪問某些指定的目錄,可以用 <DirectoryMatch> 來進行正則匹配,代碼如下:

  1. <Directory ~ "^/var/www/(.+/)*[0-9]{3}"
  2. Order allow,deny 
  3. Deny from all 
  4. </Directory> 

通過文件匹配來進行禁止,比如禁止所有針對圖片的訪問,代碼如下:

  1. <FilesMatch .(?i:gif|jpe?g|png)$> 
  2. Order allow,deny 
  3. Deny from all 
  4. </FilesMatch> 

針對URL相對路徑的禁止訪問,代碼如下:

  1. <Location /dir/> 
  2. Order allow,deny 
  3. Deny from all 
  4. </Location> 

配置示例,代碼如下:

  1. <Directory "E:/Program Files/Apache Software Foundation/Apache2.2/htdocs"
  2. # Possible values for the Options directive are "None""All"
  3. or any combination of: 
  4. # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews 
  5. # Note that "MultiViews" must be named *explicitly* --- "Options All" 
  6. # doesn't give it to you. 
  7. # The Options directive is both complicated and important. Please see 
  8. # http://httpd.apache.org/docs/2.2/mod/core.html#options 
  9. for more information. 
  10. # 就是這一行,只去掉indexes也可 
  11. #Options Indexes FollowSymLinks 
  12. Options FollowSymLinks 
  13. # AllowOverride controls what directives may be placed in .htaccess files. 
  14. # It can be "All""None"or any combination of the keywords: 
  15. # Options FileInfo AuthConfig Limit 
  16. AllowOverride None 
  17. # Controls who can get stuff from this server. 
  18. Order allow,deny 
  19. Allow from all 
  20. </Directory> 
  21. //開源代碼Vevb.com 

建議默認情況下,設置APACHE禁止用戶瀏覽目錄內容.

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 洛隆县| 百色市| 科技| 西和县| 濮阳市| 应城市| 朝阳县| 唐河县| 叶城县| 灵台县| 三原县| 阿克陶县| 尉氏县| 时尚| 灵台县| 文登市| 客服| 罗平县| 昌图县| 商洛市| 诏安县| 泌阳县| 体育| 普格县| 乌审旗| 澎湖县| 德庆县| 郁南县| 绥化市| 梅州市| 西乌珠穆沁旗| 长兴县| 高唐县| 余姚市| 汝州市| 五华县| 靖宇县| 云和县| 赣州市| 侯马市| 西和县|