linux下apache配置文件详解
s AllowOverride None Order allow,deny Allow from all </Directory> <IfModule mod_dav_fs.c> # Location of the WebDAV lock database. DAVLockDB /var/lib/dav/lockdb </IfModule> //设置CGI目录的访问别名 ScriptAlias /cgi-bin/ “/var/www/cgi-bin/” //red hat中不使用worker MPM运行方式,不加载mod_cgid.c模块 <IfModule mod_cgid.c> # # Additional to mod_cgid.c settings, mod_cgid has Scriptsock <path> # for setting UNIX socket for communicating with cgid. # #Scriptsock logs/cgisock </IfModule> //设置CGI目录的访问权限 <Directory “/var/www/cgi-bin”> AllowOverride None Options None Order allow,deny Allow from all </Directory> //重定向连接 # Redirect permanent /foo http://www.example.com/bar //设置自动生成目录列表的显示方式 //FancyIndexing 对每种类型的文件前加上一个小图标以示区别 //VersionSort 对同一个软件的多个版本进行排序 拥有帝国一切,皆有可能。欢迎访问phome.net //NameWidth=* 文件名字段自动适应当前目录下的最长文件名 IndexOptions FancyIndexing VersionSort NameWidth=* //当使用IndexOptions FancyIndexing之后,配置下面的参数 //用于告知服务器在遇到不同的文件类型或扩展名时采用MIME编码格式 //辨别文件类型并显示相应的图标 AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip AddIconByType (TXT,/icons/text.gif) text/* AddIconByType (IMG,/icons/image2.gif) image/* AddIconByType (SND,/icons/sound2.gif) audio/* AddIconByType (VID,/icons/movie.gif) video/* //当使用IndexOptions FancyIndexing之后,配置下面的参数 //用于告知服务器在遇到不同的文件类型或扩展名时采用所指定的格式 //并显示相应的图标 AddIcon /icons/binary.gif .bin .exe AddIcon /icons/binhex.gif .hqx AddIcon /icons/tar.gif .tar AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip AddIcon /icons/a.gif .ps .ai .eps AddIcon /icons/layout.gif .html .shtml .htm .pdf AddIcon /icons/text.gif .txt AddIcon /icons/c.gif .c AddIcon /icons/p.gif .pl .py AddIcon /icons/f.gif .for AddIcon /icons/dvi.gif .dvi AddIcon /icons/uuencoded.gif .uu AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl AddIcon /icons/tex.gif .tex AddIcon /icons/bomb.gif core AddIcon /icons/back.gif .. AddIcon /icons/hand.right.gif README AddIcon /icons/folder.gif ^^DIRECTORY^^ AddIcon /icons/blank.gif ^^BLANKICON^^ //当使用IndexOptions FancyIndexing之后,且无法识别文件类型时 //显示此处定义的图标 DefaultIcon /icons/unknown.gif
|
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |