#
# Apache服務器主配置文件. 包括服務器指令的目錄設置.
# 詳見 <URL:
http://www.apache.org/docs/>
#
# 請在理解用途的基礎上閱讀各指令。
#
# 再讀取此文檔後,服務器將繼續搜索運行
# E:/Program Files/Apache Group/Apache/conf/srm.conf
# E:/Program Files/Apache Group/Apache/conf/access.conf
# 除非用ResourceConfig或AccessConfig覆蓋這兒的標識
#
# 配置標識由三個基本部分組成:
# 1. 做爲一個總體來控制Apache服務器進程的標識 (the 'global environment').
# 2. 用於定義主(默認)服務器參數的標識。
# 響應虛擬主機不能處理的請求。
# 同時也提供全部虛擬主機的設置值。
# 3. 虛擬主機的設置。在一個Apache服務器進程中配置不一樣的IP地址和主機名。
#
# 配置和日誌文件名:指定服務器控制文件命名時,
# 以 "/" (或 "drive:/" for Win32)開始,服務器將使用這些絕對路徑。
# 若是文件名不是以"/"開始的,預先考慮服務器根目錄--
# 所以 "logs/foo.log",若是服務器根目錄是"/usr/local/apache",
# 服務器將解釋爲 "/usr/local/apache/logs/foo.log".
#
# 注: 指定的文件名須要用"/"代替"\"。
# (例, "c:/apache" 代替 "c:\apache").
# 若是省略了驅動器名,默認使用Apache.exe所在的驅動器盤符
# 建議指定盤符,以避免混亂。
#
### 部分 1: 全局環境
#
# 本部分的表示將影響全部Apache的操做
# 例如,所能處理的併發請求數或配置文件地址
#
#
# ServerType 可取值 inetd 或 standalone. Inetd 只適用於Unix平臺
#
ServerType standalone
#
# ServerRoot: 目錄樹的根結點。服務器配置、出錯信息、日誌文件都保存在根目錄下。
#
# 不要再目錄末尾加"/"
#
ServerRoot "C:/Program Files/Apache Group/Apache"
#
# PidFile: 服務器用於記錄啓動時進程ID的文件。
#
PidFile logs/httpd.pid
#
# ScoreBoardFile: 用於保存內部服務器進程信息的文件。
# 並不是必須。 可是若是指定了(此文件當運行Apache時生成)
# 那麼必須確保沒有兩個Apache進程共享同一個scoreboard文件。
#
ScoreBoardFile logs/apache_runtime_status
#
# 在標準配置下,服務器將順序讀取 httpd.conf(此文件可經過命令行中-f參數指定),
# srm.conf 和 access.conf。
# 目先後兩個文件是空的。爲了簡單起見,建議將全部的標識放在一個文件中。
# 如下兩條註釋的標識,是默認設置。
# 要讓服務器忽略這些文件能夠用 "/dev/null" (for Unix)
# 或"nul" (for Win32) 做爲參數。
#
#ResourceConfig conf/srm.conf
#AccessConfig conf/access.conf
#
# Timeout: 接受和發送timeout的時間
#
Timeout 300
#
# KeepAlive: 是否容許保持鏈接(每一個鏈接有多個請求)
# "Off" -無效
#
KeepAlive On
#
# MaxKeepAliveRequests: 每一個鏈接的最大請求數。
# 設置爲0表示無限制
# 建議設置較高的值,以得到最好的性能。
#
MaxKeepAliveRequests 100
#
# KeepAliveTimeout: 同一鏈接同一客戶端兩個請求之間的等待時間。
#
KeepAliveTimeout 15
#
# 在Win32下,Apache每次產生一個子進程來處理請求。
# 若是這個進程死了,會自動產生另外一個子進程。
# 全部的進入請求在子進程中多線程處理。
# 如下兩個標識控制進程的運行
#
#
# MaxRequestsPerChild: 每一個子進程死亡以前最大請求數
# 若是超過這個請求數,子程序會自動退出,避免延期使用致使內存溢出或其餘問題。
# 大部分系統,並不須要此設置,
# 可是部分,象Solaris,確實值得注意。
# 對Win32, 可設置爲0 (無限制)
# 除非有另外的考慮。
#
# 注: 此值不包括在每一個鏈接初始化請求後,"keptalive"請求
# 例如, 若是一個子進程處理一個初始化請求和10個後續"keptalive"請求,
# 在這個限制下,只會記爲一個請求。
#
MaxRequestsPerChild 0
#
# ThreadsPerChild: 服務器所容許的併發線程數。
# 此值的設置取決於服務器的響應能力(約多的請求在同一時間激活,則每一個請求的處理時間越慢)
# 和服務器所容許消耗的系統資源。
#
ThreadsPerChild 50
#
# Listen: 容許將Apache綁頂到指定的IP地址和端口,做爲默認值的輔助選項。
# 參見 <VirtualHost>
#
#Listen 3000
#Listen 12.34.56.78:80
#
# BindAddress: 經過此選項可支持虛擬主機。
# 此標識用於告訴服務器監聽哪一個IP地址。
# 包括:"*", IP地址, 或域名.
# 參見 <VirtualHost> 和 Listen directives.
#
BindAddress 166.111.178.144
#
# Apache模塊編譯成標準的Windows結構。
#
# 如下模塊綁定到標準的Apache二進制windows分佈。
# 要修改標準操做,取消如下行的註釋而且修改指定模塊列表。
#
# 警告:這是高級選項。可能致使服務器崩潰。
# 沒有專家的指導,不要輕易修改。
#
#ClearModuleList
#AddModule mod_so.c mod_mime.c mod_access.c mod_auth.c mod_negotiation.c
#AddModule mod_include.c mod_autoindex.c mod_dir.c mod_cgi.c mod_userdir.c
#AddModule mod_alias.c mod_env.c mod_log_config.c mod_asis.c mod_imap.c
#AddModule mod_actions.c mod_setenvif.c mod_isapi.c
#
# 動態共享對象(Dynamic Shared Object,DSO)
#
# 要使用基於DSO的功能模塊,須要替換此處相應的
# `LoadModule' 行。這樣在使用以前這些包含的標識都將生效。
# 有關DSO及至的詳細資料請看Apache1.3版中的README.DSOSO。
# 運行"apche -l"將列表顯示Apache內奸的模塊(相似標準的鏈接已經生效)
#
# 注:模塊載入的順序很重要。沒有專家的建議,不要修改如下的順序。
#
#LoadModule anon_auth_module modules/ApacheModuleAuthAnon.dll
#LoadModule dbm_auth_module modules/ApacheModuleAuthDBM.dll
#LoadModule digest_auth_module modules/ApacheModuleAuthDigest.dll
#LoadModule cern_meta_module modules/ApacheModuleCERNMeta.dll
#LoadModule digest_module modules/ApacheModuleDigest.dll
#LoadModule expires_module modules/ApacheModuleExpires.dll
#LoadModule headers_module modules/ApacheModuleHeaders.dll
#LoadModule proxy_module modules/ApacheModuleProxy.dll
#LoadModule rewrite_module modules/ApacheModuleRewrite.dll
#LoadModule speling_module modules/ApacheModuleSpeling.dll
#LoadModule info_module modules/ApacheModuleInfo.dll
#LoadModule status_module modules/ApacheModuleStatus.dll
#LoadModule usertrack_module modules/ApacheModuleUserTrack.dll
#
# ExtendedStatus 在服務器狀態句柄被呼叫時控制是產生「完整」的狀態信息(ExtendedStatus On)
# 仍是僅返回基本信息(ExtendedStatus Off)
# 默認是:Off
#
#ExtendedStatus On
### 部分 2: 主服務器配置
#
# 此部分的標識用於主服務器全部的設置值,
# 響應任何<VirtualHost>定義不處理的請求
# 這些值同時給你稍後在此文件中定義的<VirtualHost>提供默認值。
#
# 全部的標識可能會在<VirtualHost>中出現。
# 對應的默認值會被虛擬主機從新定義覆蓋。
#
#
# Port: Standalone服務器監聽的端口。
# 在Apache可以監聽指定端口前,須要在防火牆中進行設置。
# 其它運行httpd的服務器也可能影響此端口。 Disable
# 若是遇到問題,請關閉全部的防火牆、安全保護和其餘的服務。
# Windos NT的"NETSTAT -a"指令會有助於問題的分析。
#
Port 80
#
# ServerAdmin: 你的地址。若是服務器有任何問題將發信到這個地址。
# 這個地址會在服務器產生的某些頁面中出現,例如,錯誤報告。
#
ServerAdmin
chenyl98@mails.tsinghua.edu.cn
#
# ServerName 容許設置主機名。若是與程序得到的不一樣,主機名將返回客戶端。
# (例如,用"www"代替主機真實的名字)
#
# 注: 主機名不能隨便指定。必須是你的機器有效的DNS名稱。不然沒法正常工做。
# 若是不能理解,傾向你的網絡管理員詢問。
# 若是你的主機沒有註冊DNS名,可在此輸入IP地址。
# 此時必須用IP地址來訪問。(如,
http://123.45.67.89/)
# 這樣扔能夠完成從新定向的工做。
#
# 127.0.0.1 是TCP/IP的本地環路地址, 一般命名爲localhost.
# 機器默認此地置爲自己。 若是隻是使用Apache來進行本地測試和開發,
# 可以使用127.0.0.1 做爲服務器名.
#
#ServerName new.host.name
#
# DocumentRoot: 放置服務文檔的目錄。
# 默認狀態下,全部的請求都以這個目錄爲基礎。
# 可是直接符號鏈接和別名可用於指向其餘位置。
#
DocumentRoot "D:/www_root"
#
# Apache訪問的每一個目錄可設置相關的服務和特性是容許或(和)不容許。
# (一樣影響其子目錄)
#
# 首先,設置"default"地址只有最基本的權限。
#
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
#
# 注意從如今開始必須制定開啓特殊的權限。
# 這樣就不會產生意想不到的結果。
# 請仔細確認。
#
#
# 這個地址應與DocumentRoot保持一致
#
<Directory "D:/www_root">
#
# 此值但是: "None", "All", 或下列的組合: "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", 或 "MultiViews".
#
# 注意"MultiViews"必須明確指定--- "Options All"不包括此特性。
#
Options Indexes FollowSymLinks MultiViews
#
# 此項控制目錄中哪些.htaccess文件可覆蓋。
# 容許值: "All"或者如下項的組合:"Options", "FileInfo",
# "AuthConfig", "Limit"
#
AllowOverride None
#
# 控制哪些用戶可今後服務器得到資料。
#
Order allow,deny
Allow from all
</Directory>
#
# UserDir: 當請求~user時,追加到用戶主目錄的路徑地址。
#
# 在Win32下,並不要求指定爲用戶登錄的主目錄。
# 所以可以使用如下的格式。
# 詳細參照文檔UserDir
#
<IfModule mod_userdir.c>
UserDir "f:/homepages/"
</IfModule>
#
# 控制訪問UserDir目錄. The following is an example
# 如下是一個站點的例子,權限限制爲只讀。
#
#<Directory "E:/Program Files/Apache Group/Apache/users">
# AllowOverride FileInfo AuthConfig Limit
# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
# <Limit GET POST OPTIONS PROPFIND>
# Order allow,deny
# Allow from all
# </Limit>
# <LimitExcept GET POST OPTIONS PROPFIND>
# Order deny,allow
# Deny from all
# </LimitExcept>
#</Directory>
#
# DirectoryIndex: 預設的HTML目錄索引文件名。
# 用空格來分隔多個文件名。
#
<IfModule mod_dir.c>
DirectoryIndex index.html
</IfModule>
#
# AccessFileName: 每一個目錄中用於控制訪問信息的文件名。
#
AccessFileName .htaccess
#
# 如下行防止客戶端可訪問 .htaccess 文件。
# 由於 .htaccess文件一般包含受權信息,
# 處於安全的考慮不容許訪問。
# 若是想讓訪客看到.htaccess文件的內容,
# 可將這些行註釋。
# 若是修改了上面的AccessFileName,
# 請在此進行相應的修改。
#
# 同時,通常會用相似.htpasswd的文件保存密碼。
# 這些文件一樣能夠獲得保護。
#
<Files ~ "^\.ht">
Order allow,deny
Deny from all
</Files>
#
# CacheNegotiatedDocs: 默認下,Apache對每一個文檔發送"Pragma: no-cache"
# 這將要求代理服務器不緩存此文檔。
# 取消下列行的可取消這個屬性,這樣代理服務器將緩存這些文檔。
#
#CacheNegotiatedDocs
#
# UseCanonicalName: (1.3新增) 當此設置爲on時,
# 不管什麼時候Apache須要構建一個自引用的URL(指向響應來源服務器),
# 它將用ServerName和Port來構建一個規範的格式。
# 當此設置爲off時,Apache將使用客戶端提供的"主機名:端口"
# 這將同時影響CGI腳本中的SERVER_NAME和SERVER_PORT
#
UseCanonicalName On
#
# TypesConfig 記錄媒體類型(mime.types)文件或相似的東東放置的位置
#
<IfModule mod_mime.c>
TypesConfig conf/mime.types
</IfModule>
#
# DefaultType 是服務器處理未確認類型的文件,如爲止的擴展名,的默認類型。
# 若是你的服務器上主要包含的是文本或HTML文檔,"text/plain"是較好的設置
# 若是服務器上主要包含二進制文件,如應用程序或圖片,
# 最好設置成"application/octet-stream"防止瀏覽器將二進制文件以文本的方式顯示。
#
DefaultType text/plain
#
# mod_mime_magic模塊容許服務器使用文件自身的不一樣標識來肯定文件類型。
# MIMEMagicFile指示模塊文件標識的定義所在的位置。
# mod_mime_magic不是默認服務器的一部分。
# (必須自行用LoadModule來追加 [見'全局環境'部分的 DSO 章節],
# 或者在編譯服務器時包含mod_mime_magic部分)
# 包含在 <IfModule> 中.
# 就是說,若是該模塊是服務器的一部分,MIMEMagicFile標識將執行。
#
<IfModule mod_mime_magic.c>
MIMEMagicFile conf/magic
</IfModule>
#
# HostnameLookups: 註冊客戶端的機器名或IP地址。
# 例如:
www.apache.org (on) 或 204.62.129.132 (off).
# 默認爲off,由於對於網絡來講,最好讓人們有意識的設置爲on,
# 由於開啓此功能意味着每一個客戶請求將致使至少向name服務器發送一個lookup請求
#
HostnameLookups Off
#
# ErrorLog: 錯誤記錄文件的地址
# 若是不在<VirtualHost>內指定ErrorLog
# 改虛擬主機的錯誤心細將記錄到此處。
# 若是在<VirtualHost>中明確指定了錯誤記錄文件,
# 則錯誤將記錄在那兒而不是這兒。
#
ErrorLog logs/error.log
#
# LogLevel: 控制記錄在error.log中信息的個數.
# 可能的值:debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn
#
# 如下標識定義CustomLog標識使用的格式。(見下)
#
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
#
# 訪問記錄的位置和格式 (功用的記錄文件格式).
# 若是不在<VirtualHost>中定義記錄文件,
# 那些訪問記錄就將保存在這兒。 Contrariwise, if you *do*
# 反之,若是指定了記錄文件,那麼訪問記錄將記錄在那兒而不是這個文件中。
#
CustomLog logs/access.log common
#
# 若是但願使用代理和參考的記錄文件, 取消如下標識的註釋符
#
#CustomLog logs/referer.log referer
#CustomLog logs/agent.log agent
#
# 若是想在一個文件中記錄訪問、代理、參考信息(複合的記錄格式)
# 可以使用如下標識
#
#CustomLog logs/access.log combined
#
# 在服務器產生的頁面(如錯誤文檔信息,FTP目錄列表等等,不包括CGI產生的文檔)中
# 增長一條服務器版本和虛擬主機名的信息。
# 設置爲"EMail"將包含mailto: ServerAdmin的鏈接.
# 可選值: On | Off | EMail
#
ServerSignature On
#
# 默認下,Apache用工做行解析全部CGI腳本
# 此註釋行(腳本的第一行)包括'#'和'!'後面跟着執行特殊腳本的程序路徑,
# 對perl腳原本說是C:\Program Files\Perl目錄中的perl.exe。
# 工做行以下:
#!c:/program files/perl/perl
# 注意真實的工做行不能有縮進,必須是文件的第一行。
# 固然,CGI進程必須經過適當的scriptAlias或ExecCGI選項標識來啓動。
#
# 然而,Windows下的Apache即容許以上的Unix方式,也能夠經過註冊表的形式。
# 用註冊表執行文件的方法同在Windows資源管理器中雙擊運行的註冊方法相同。
# 此腳本操做可在Windows資源管理器的「查看」菜單中設置。
# 「文件夾選項」,而後查看「文件類型」。點擊編輯按鈕。
# 修改操做屬性。Apache 1.3會嘗試執行‘Open'操做,
# 若是失敗則會嘗試工做行
# 這個屬性在Apache release 2.0中會有改變.
#
# 每一個機制都有自身特定的安全弱點,這樣可能致使別人運行你不但願調用的程序。
# 最佳的解決方案還在討論中。
#
# 要是這個Windows的特殊屬性生效 (同時會是Unix屬性無效)
# 取消下列標識的註釋符。
#
#scriptInterpreterSource registry
#
# 上面的標識可在<Directory>塊或.htaccess文件中單獨替換。
# 可選擇'registry' (Windows behavior)或 'script'
# (Unix behavior) option, 將覆蓋服務器的默認值。
#
#
# Aliases: 可無限制的追加別名。格式以下:
# Alias 假名 真名
#
<IfModule mod_alias.c>
#
# 注意若是假名中包含'/',服務器會在當前URL中發出請求。
# 所以"/icons"不能用於別名
# 必須用 "/icons/"..
#
Alias /icons/ "C:/Program Files/Apache Group/Apache/icons/"
<Directory "C:/Program Files/Apache Group/Apache/icons">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
#
# scriptAlias: 控制哪一個目錄包含服務器腳本。
# scriptAlias本質行和Aliases同樣。, except that
# 區別在於真名目錄中的文檔被看做是一個應用程序。
# 請求時由服務器運行而不是發往客戶端。
# "/"符號的規則同
# Alias相同.
#
scriptAlias /cgi-bin/ "C:/Program Files/Apache Group/Apache/cgi-bin/"
#
# "C:/Program Files/Apache Group/Apache/cgi-bin" 可修改成任何放置CGI腳本的目錄
#
<Directory "C:/Program Files/Apache Group/Apache/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
</IfModule>
# 別名結束
#php腳本說明
scriptAlias /php/ "d:/php/"
AddType application/x-httpd-php .php
AddType application/x-httpd-php .php3
AddType application/x-httpd-php .phtml
Action application/x-httpd-php "/php/php.exe"
#php腳本說明結束
#
# Redirect 容許告訴客戶端服務器上曾經有的文檔,可是如今不存在了。
# 而且能夠告訴客戶端到哪兒去尋找。
# 格式: Redirect old-URL new-URL
#
#
# 控制服務器目錄列表顯示的標識
#
<IfModule mod_autoindex.c>
#
# FancyIndexing標識是使用特定的目錄檢索仍是標準的(standard)
#
IndexOptions FancyIndexing
#
# AddIcon*代表不一樣文件或擴展名顯示的圖標。
# 這些圖標只在特定檢索狀態下顯示。
#
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/*
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^^
#
# DefaultIcon 用於爲制定圖標的文件所顯示的圖標。
#
DefaultIcon /icons/unknown.gif
#
# AddDescription在服務器生成的檢索的某個文件後追加小段說明。
# 此項只在設置爲FancyIndexed時有效
# 格式:AddDescription "描述" 文件名
#
#AddDescription "GZIP compressed document" .gz
#AddDescription "tar archive" .tar
#AddDescription "GZIP compressed tar archive" .tgz
#
# ReadmeName是服務器默認的README文件。
# 而且會追加到目錄列表的最後。
#
# HeaderName 是目錄中須要預先顯示內容的文件名。
#
# 若是MultiViews在選項中,做爲結果,服務器將先找name.html,
# 若是存在就包含它。若是name.html不存在,
# 服務器會繼續尋找name.txt。若是存在就做爲純文本包含進來。
#
ReadmeName README
HeaderName HEADER
#
# IndexIgnore是一系列的文件名。目錄索引將忽略這些文件而且不包含在列表中。
# 容許使用通配符。
#
IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
</IfModule>
# indexing標識結束
#
# 文件類型
#
<IfModule mod_mime.c>
#
# AddEncoding 可用於特殊瀏覽器(Mosaic/X 2.1+)快速傳輸壓縮信息。
# 注:並非全部的服務器都支持。
# 除了名字類似,如下Add*標識對上面的FancyIndexing定製標識無影響。
#
AddEncoding x-compress Z
AddEncoding x-gzip gz tgz
#
# AddLanguage用於指定文檔的語言。
# 可使用content標籤指定每一個文件的語言。
#
# 注 1: 後綴沒必要與所用語言的關鍵字相同。
# --- 波蘭語(Polish,標準代碼爲pl)的文檔能夠用
# "AddLanguage pl .po" 來避免與perl腳本文件混淆。
#
# 注 2: 如下例子代表兩個字母的語言縮寫和兩個字母的國家縮寫並不必定相同。
# E.g. 'Danmark/dk' 對比 'Danish/da'.
#
# 注 3: 其中'ltz'使用了三個字符,與RFC的規定不一樣。
# 可是這個問題正在修訂中,而且從新清理RFC1766
#
# 丹麥Danish (da) - 荷蘭Dutch (nl) - 英國English (en) - 愛薩尼亞Estonian (ee)
# 法國French (fr) - 德國German (de) - 現代希臘文Greek-Modern (el)
# 意大利Italian (it) - 朝鮮Korean (kr) - 挪威Norwegian (no)
# 葡萄牙Portuguese (pt) - 盧森堡Luxembourgeois* (ltz)
# 西班牙Spanish (es) - 瑞典Swedish (sv) - 加泰羅尼亞Catalan (ca) - 捷克Czech(cz)
# 波蘭Polish (pl) - 巴西Brazilian Portuguese (pt-br) - 日本Japanese (ja)
# 俄國Russian (ru)
#
AddLanguage da .dk
AddLanguage nl .nl
AddLanguage en .en
AddLanguage et .ee
AddLanguage fr .fr
AddLanguage de .de
AddLanguage el .el
AddLanguage he .he
AddCharset ISO-8859-8 .iso8859-8
AddLanguage it .it
AddLanguage ja .ja
AddCharset ISO-2022-JP .jis
AddLanguage kr .kr
AddCharset ISO-2022-KR .iso-kr
AddLanguage no .no
AddLanguage pl .po
AddCharset ISO-8859-2 .iso-pl
AddLanguage pt .pt
AddLanguage pt-br .pt-br
AddLanguage ltz .lu
AddLanguage ca .ca
AddLanguage es .es
AddLanguage sv .se
AddLanguage cz .cz
AddLanguage ru .ru
AddLanguage tw .tw
AddCharset Big5 .Big5 .big5
AddCharset WINDOWS-1251 .cp-1251
AddCharset CP866 .cp866
AddCharset ISO-8859-5 .iso-ru
AddCharset KOI8-R .koi8-r
AddCharset UCS-2 .ucs2
AddCharset UCS-4 .ucs4
AddCharset UTF-8 .utf8
# LanguagePriority 可設置語言的優先級。
#
# 優先級降序排列
# 在此處按照字母順序,可自行修改
#
<IfModule mod_negotiation.c>
LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
</IfModule>
#
# AddType 可臨時改變mime.types或者指定特殊文件的格式。
#
# 例如:PHP 3.x 模塊 (非Apache標準配件,參見
http://www.php.net)可用下面格式定義:
#
#AddType application/x-httpd-php3 .php3
#AddType application/x-httpd-php3-source .phps
#
# PHP 4.x, 使用:
#
#AddType application/x-httpd-php .php
#AddType application/x-httpd-php-source .phps
AddType application/x-tar .tgz
#
# AddHandler 可將特定文件擴展名映射處處理方法上。
# 與文件類型無關。此特性可內建到服務器中或者追加在操做指令中(見下)
#
# 若是但願用服務器端應用或scriptAliased外的CGI,取消如下行的註釋符
#
# 用CGI腳本:
#
#AddHandler cgi-script .cgi
#
# 用服務器解析的HTML文檔
#
#AddType text/html .shtml
#AddHandler server-parsed .shtml
#
# 取消如下注釋符可激活Apache的send-asis HTTP file特性
#
#AddHandler send-as-is asis
#
# 若是使用服務器端解析的圖像定位文件,使用如下標識:
#
#AddHandler imap-file map
#
# 要激活type maps使用:
#
#AddHandler type-map var
</IfModule>
# 文檔類型說明結束
#
# Action 定義在文件匹配時執行相應的腳本。
# 可簡化經常使用CGI文件的調用。
# 格式: Action media/type /cgi-script/location
# 格式: Action handler-name /cgi-script/location
#
#
# MetaDir: 指定保存meta信息文件的目錄。
# 這些文件包含附加的HTTP頭,在發送文檔是一併發送。
#
#MetaDir .web
#
# MetaSuffix: 指定包含meta信息的文件的後綴。
#
#MetaSuffix .meta
#
# 可定製的錯誤響應(Apache類型)
# 共三種風格:
#
# 1) 純文本
#ErrorDocument 500 "The server made a boo boo.
# 注: 第一個"號用於表示是文本,實際不輸出
#
# 2) 本地重定向
#ErrorDocument 404 /missing.html
# to redirect to local URL /missing.html
#ErrorDocument 404 /cgi-bin/missing_handler.pl
# 注:可重定向到任何一個服務器端的腳本或文檔
#
# 3) 外部重定向
#ErrorDocument 402
http://some.other_server.com/subscription_info.html
# 注: 大部分與初始請求關聯的環境變量對這樣的腳本無效。
#
#
# 基於瀏覽器的定製操做
#
<IfModule mod_setenvif.c>
#
# 如下標識修改普通的HTTP響應操做。
# 第一個標識針對Netscape2.x和其餘無此功能的瀏覽器取消保持激活狀態的功能
# 這些瀏覽器在執行這些功能時會出錯。
# 第二個標識針對IE4.0b2設置。其中有一條不完整的HTTP/1.1指令
# 在301或302(重定向)響應時不能正確的保持激活狀態
#
BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
#
# 下面的標識經過不產生基本的1.1響應取消對違反HTTP/1.0標準的瀏覽器的響應。
#
BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0
</IfModule>
# 瀏覽器定製標識結束
#
# 容許使用URL"http://servername/server-status"的形式查看服務器狀態報告
# 修改 ".your_domain.com"來匹配相應的域名以激活此功能
#
#<Location /server-status>
# SetHandler server-status
# Order deny,allow
# Deny from all
# Allow from .your_domain.com
#</Location>
#
# 容許使用URL"://servername/server-info"(要求加載mod_info.c),
# 來遠程察看服務器配置報告。
# 修改 ".your_domain.com"來匹配相應的域名以激活此功能
#
#<Location /server-info>
# SetHandler server-info
# Order deny,allow
# Deny from all
# Allow from .your_domain.com
#</Location>
#
# 據報有人試圖利用一個老的1.1漏洞。
# 這個漏洞與CGI腳本在Apache服務器上分佈有關。
# 經過取消下面幾行的註釋符,能夠將此類攻擊記錄轉移到phf.apache.org上的記錄腳本上。
# 或者也能夠利用腳本scriptsupport/phf_abuse_log.cgi記錄在本地服務器上。
#
#<Location /cgi-bin/phf*>
# Deny from all
# ErrorDocument 403
http://phf.apache.org/phf_abuse_log.cgi
#</Location>
#
# 代理服務器標識。取消下列行的註釋符可激活代理服務器。
#
#<IfModule mod_proxy.c>
# ProxyRequests On
# <Directory proxy:*>
# Order deny,allow
# Deny from all
# Allow from .your_domain.com
# </Directory>
#
# 激活/取消處理HTTP/1.1 "Via:" 報頭
# ("Full":加入服務器版本; "Block":取消全部外發的Via: 報頭)
# 可設置值: Off | On | Full | Block
#
# ProxyVia On
#
# 可修改下列各行並取消註釋符來激活緩存。
# (沒有CacheRoot標識就不使用緩存)
#
# CacheRoot "E:/Program Files/Apache Group/Apache/proxy"
# CacheSize 5
# CacheGcInterval 4
# CacheMaxExpire 24
# CacheLastModifiedFactor 0.1
# CacheDefaultExpire 1
# NoCache a_domain.com another_domain.edu joes.garage_sale.com
#</IfModule>
# 代理標識結束
### 部分 3: 虛擬主機
#
# 虛擬主機: 若是但願在一臺服務器上實現多個域名和主機名的服務,
# 可設置VirtualHost來實現。Most configurations
# 大部分的設置使用基於名稱的虛擬主機,這樣服務器就沒必要爲IP地址操心。
# 這些用星號在下面的標識中標出。
#
# 在試圖設置虛擬主機前
# 請閱讀<URL:
http://www.apache.org/docs/vhosts/>中的文檔。
# 以瞭解細節問題。
#
# 可用命令行參數 '-S'來確認虛擬主機的設置。
#
#
# 使用基於名稱的虛擬主機
#
#NameVirtualHost *
#
# 虛擬主機實例:
# 幾乎全部的Apache標識均可用於虛擬主機內。
# 第一個VirtualHost部分用於申請一個無重複的服務器名。
#
#<VirtualHost *>
# ServerAdmin
webmaster@dummy-host.example.com
# DocumentRoot /www/docs/dummy-host.example.com
# ServerName dummy-host.example.com
# ErrorLog logs/dummy-host.example.com-error_log
# CustomLog logs/dummy-host.example.com-access_log common
#</VirtualHost>
========================================================================================================
# power by phpStudy 2014 www.phpStudy.net 官網下載最新版 # # This is the main Apache HTTP server configuration file. It contains the # configuration directives that give the server its instructions. # See <URL:http://httpd.apache.org/docs/2.4/> for detailed information. # In particular, see # <URL:http://httpd.apache.org/docs/2.4/mod/directives.html> # for a discussion of each configuration directive. # #這是Apache HTTP Server的主配置文件。它包括了配置指令【directives】,這些指令給服務器服務器指令【instructions】【】查看<URL:http://httpd.apache.org/docs/2.4/>以取得更多信息 #特別指出,查看<URL:http://httpd.apache.org/docs/2.4/mod/directives.html>以獲得關於每條配置命令的討論 # Do NOT simply read the instructions in here without understanding # what they do. They're here only as hints or reminders. If you are unsure # consult the online docs. You have been warned. #不要只是簡單閱讀這裏的每條指令而不理解它們的所作所爲【真實含義】。這裏只是一種提示和提醒。若是你不能肯定【它們的含義】,請參閱在線文檔。特此警告! # Configuration and logfile names: If the filenames you specify for many # of the server's control files begin with "/" (or "drive:/" for Win32), the # server will use that explicit path. If the filenames do *not* begin # with "/", the value of ServerRoot is prepended -- so "logs/access_log" # with ServerRoot set to "/usr/local/apache2" will be interpreted by the # server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log" # will be interpreted as '/logs/access_log'. #關於配置文件和日誌文件的名字:若是你使用了以斜槓「/「開始的指定了多個服務器控制文件名,那麼服務器將使用那些絕對路徑。 #若是你沒有以斜槓「/「開始文件名,那麼服務器根路徑(ServerRoot)就是相對的---因此,像"logs/access_log"這樣的服務器根 路徑 #就將被服務器解釋成加上"/usr/local/apache2"的"/usr/local/apache2/logs/access_log",反 之"/logs/access_log"將被服務器解釋成"/logs/access_log" # NOTE: Where filenames are specified, you must use forward slashes # instead of backslashes (e.g., "c:/apache" instead of "c:\apache"). # If a drive letter is omitted, the drive on which httpd.exe is located # will be used by default. It is recommended that you always supply # an explicit drive letter in absolute paths to avoid confusion. #注意:在文件名被指定的地方,你必須用「前斜槓」【就是咱們平時說的斜槓"/",與問號在同一個鍵,右手小指下的那個】代替後斜槓【即「反斜槓/】」(如:用"c:/apache"來代替"c:\apache")。 #若是你省略了驅動器符號,那麼httpd.exe將使用默認的驅動器。建議你老是在絕對路徑中使用一個明確的驅動器符號,以免混淆。 # # ServerRoot: The top of the directory tree under which the server's # configuration, error, and log files are kept. #ServerRoot:目錄樹的頂級根目錄,用來保存服務器配置、錯誤、日誌文件 # # Do not add a slash at the end of the directory path. If you point # ServerRoot at a non-local disk, be sure to specify a local disk on the # Mutex directive, if file-based mutexes are used. If you wish to share the # same ServerRoot for multiple httpd daemons, you will need to change at # least PidFile. # ServerRoot "F:/phpStudy/Apache" # # Mutex: Allows you to set the mutex mechanism and mutex file directory # for individual mutexes, or change the global defaults # # Uncomment and change the directory if mutexes are file-based and the default # mutex file directory is not on a local disk or is not appropriate for some # other reason. # # Mutex default:logs # # Listen: Allows you to bind Apache to specific IP addresses and/or # ports, instead of the default. See also the <VirtualHost> # directive. #偵聽:容許你綁定Apache服務器到指定ip地址和/或端口,用來代替默認值。參見<VirtualHost>指令。 # # Change this to Listen on specific IP addresses as shown below to # prevent Apache from glomming onto all bound IP addresses. #修改這個指令以偵聽下面指定的ip地址,避免Apache服務器抓取所有綁定的IP地址 # #Listen 12.34.56.78:80 Listen 80 # # Dynamic Shared Object (DSO) Support 動態共享對象支持 # # To be able to use the functionality of a module which was built as a DSO you # have to place corresponding `LoadModule' lines at this location so the # directives contained in it are actually available _before_ they are used. # Statically compiled modules (those listed by `httpd -l') do not need # to be loaded here. #爲了可以使用一個做爲DSO建立的模塊【modules】的功能,你須要放置相應的【corresponding】`LoadModule'行在這個位置,這樣在你使用以前,這些指令就包含在模塊中了。 # # Example: # LoadModule foo_module modules/mod_foo.so # LoadModule access_compat_module modules/mod_access_compat.so LoadModule actions_module modules/mod_actions.so LoadModule alias_module modules/mod_alias.so LoadModule allowmethods_module modules/mod_allowmethods.so LoadModule asis_module modules/mod_asis.so LoadModule auth_basic_module modules/mod_auth_basic.so #LoadModule auth_digest_module modules/mod_auth_digest.so #LoadModule authn_anon_module modules/mod_authn_anon.so LoadModule authn_core_module modules/mod_authn_core.so #LoadModule authn_dbd_module modules/mod_authn_dbd.so #LoadModule authn_dbm_module modules/mod_authn_dbm.so LoadModule authn_file_module modules/mod_authn_file.so #LoadModule authn_socache_module modules/mod_authn_socache.so #LoadModule authnz_ldap_module modules/mod_authnz_ldap.so LoadModule authz_core_module modules/mod_authz_core.so #LoadModule authz_dbd_module modules/mod_authz_dbd.so #LoadModule authz_dbm_module modules/mod_authz_dbm.so LoadModule authz_groupfile_module modules/mod_authz_groupfile.so LoadModule authz_host_module modules/mod_authz_host.so #LoadModule authz_owner_module modules/mod_authz_owner.so LoadModule authz_user_module modules/mod_authz_user.so LoadModule autoindex_module modules/mod_autoindex.so #LoadModule buffer_module modules/mod_buffer.so #LoadModule cache_module modules/mod_cache.so #LoadModule cache_disk_module modules/mod_cache_disk.so #LoadModule cern_meta_module modules/mod_cern_meta.so LoadModule cgi_module modules/mod_cgi.so #LoadModule charset_lite_module modules/mod_charset_lite.so #LoadModule data_module modules/mod_data.so #LoadModule dav_module modules/mod_dav.so #LoadModule dav_fs_module modules/mod_dav_fs.so #LoadModule dav_lock_module modules/mod_dav_lock.so #LoadModule dbd_module modules/mod_dbd.so #LoadModule deflate_module modules/mod_deflate.so LoadModule dir_module modules/mod_dir.so #LoadModule dumpio_module modules/mod_dumpio.so LoadModule env_module modules/mod_env.so #LoadModule expires_module modules/mod_expires.so #LoadModule ext_filter_module modules/mod_ext_filter.so #LoadModule file_cache_module modules/mod_file_cache.so #LoadModule filter_module modules/mod_filter.so #LoadModule headers_module modules/mod_headers.so #LoadModule heartbeat_module modules/mod_heartbeat.so #LoadModule heartmonitor_module modules/mod_heartmonitor.so #LoadModule ident_module modules/mod_ident.so #LoadModule imagemap_module modules/mod_imagemap.so LoadModule include_module modules/mod_include.so #LoadModule info_module modules/mod_info.so LoadModule isapi_module modules/mod_isapi.so #LoadModule lbmethod_bybusyness_module modules/mod_lbmethod_bybusyness.so #LoadModule lbmethod_byrequests_module modules/mod_lbmethod_byrequests.so #LoadModule lbmethod_bytraffic_module modules/mod_lbmethod_bytraffic.so #LoadModule lbmethod_heartbeat_module modules/mod_lbmethod_heartbeat.so #LoadModule ldap_module modules/mod_ldap.so #LoadModule logio_module modules/mod_logio.so LoadModule log_config_module modules/mod_log_config.so #LoadModule log_debug_module modules/mod_log_debug.so #LoadModule log_forensic_module modules/mod_log_forensic.so #LoadModule lua_module modules/mod_lua.so LoadModule mime_module modules/mod_mime.so #LoadModule mime_magic_module modules/mod_mime_magic.so LoadModule negotiation_module modules/mod_negotiation.so #LoadModule proxy_module modules/mod_proxy.so #LoadModule proxy_ajp_module modules/mod_proxy_ajp.so #LoadModule proxy_balancer_module modules/mod_proxy_balancer.so #LoadModule proxy_connect_module modules/mod_proxy_connect.so #LoadModule proxy_express_module modules/mod_proxy_express.so #LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so #LoadModule proxy_ftp_module modules/mod_proxy_ftp.so #LoadModule proxy_html_module modules/mod_proxy_html.so #LoadModule proxy_http_module modules/mod_proxy_http.so #LoadModule proxy_scgi_module modules/mod_proxy_scgi.so #LoadModule ratelimit_module modules/mod_ratelimit.so #LoadModule reflector_module modules/mod_reflector.so #LoadModule remoteip_module modules/mod_remoteip.so #LoadModule request_module modules/mod_request.so #LoadModule reqtimeout_module modules/mod_reqtimeout.so LoadModule rewrite_module modules/mod_rewrite.so #LoadModule sed_module modules/mod_sed.so #LoadModule session_module modules/mod_session.so #LoadModule session_cookie_module modules/mod_session_cookie.so #LoadModule session_crypto_module modules/mod_session_crypto.so #LoadModule session_dbd_module modules/mod_session_dbd.so LoadModule setenvif_module modules/mod_setenvif.so #LoadModule slotmem_plain_module modules/mod_slotmem_plain.so #LoadModule slotmem_shm_module modules/mod_slotmem_shm.so #LoadModule socache_dbm_module modules/mod_socache_dbm.so #LoadModule socache_memcache_module modules/mod_socache_memcache.so LoadModule socache_shmcb_module modules/mod_socache_shmcb.so #LoadModule speling_module modules/mod_speling.so LoadModule ssl_module modules/mod_ssl.so #LoadModule fcgid_module modules/mod_fcgid.so #LoadModule status_module modules/mod_status.so #LoadModule substitute_module modules/mod_substitute.so #LoadModule unique_id_module modules/mod_unique_id.so #LoadModule userdir_module modules/mod_userdir.so #LoadModule usertrack_module modules/mod_usertrack.so #LoadModule version_module modules/mod_version.so #LoadModule vhost_alias_module modules/mod_vhost_alias.so #LoadModule watchdog_module modules/mod_watchdog.so #LoadModule xml2enc_module modules/mod_xml2enc.so <IfModule unixd_module> # # If you wish httpd to run as a different user or group, you must run # httpd as root initially and it will switch. #UNIX系統:若是你但願httpd以不一樣的用戶或組來運行,你必須最初以root運行httpd,而且被轉換 # # User/Group: The name (or #number) of the user/group to run httpd as. # It is usually good practice to create a dedicated user and group for # running httpd, as with most system services. #User/Group:運行httpd的用戶名/組 的名字。對於大多數系統服務來說,爲運行httpd建立一個專用用戶和組是一個好的實踐方法。 # User daemon Group daemon </IfModule> # 'Main' server configuration #「主」服務器配置 # The directives in this section set up the values used by the 'main' # server, which responds to any requests that aren't handled by a # <VirtualHost> definition. These values also provide defaults for # any <VirtualHost> containers you may define later in the file. #本節的指令集用來設置「main"服務器所使用的值,服務器響應任何沒有被<VirtualHost>定義所處理的配置。 #這些指令的值也爲你可能在後續文件中定義的任何<VirtualHost>配置提供默認值 # # All of these directives may appear inside <VirtualHost> containers, # in which case these default settings will be overridden for the # virtual host being defined. #全部這些指令可能顯示在<VirtualHost>配置裏面,在這種狀況下這些默認設置會被將要定義的虛擬主機重寫 # # # ServerAdmin: Your address, where problems with the server should be # e-mailed. This address appears on some server-generated pages, such # as error documents. e.g. admin@your-domain.com #你的郵箱地址,當發生問題時服務器將向此郵箱發送郵件。這個郵箱顯示在一些服務器生成的頁面 # ServerAdmin admin@phpStudy.net # # ServerName gives the name and port that the server uses to identify itself. # This can often be determined automatically, but we recommend you specify # it explicitly to prevent problems during startup. # ServerName提供用於識別它本身的名字和端口。名字和端口一般由服務器自動定義,可是咱們建議你明確地指定它以免啓動過程當中產生問題。 # # If your host doesn't have a registered DNS name, enter its IP address here. # 若是你的主機沒有註冊DNS名稱,在這裏輸入DNS的IP地址。 # ServerName localhost # # Deny access to the entirety of your server's filesystem. You must # explicitly permit access to web content directories in other # <Directory> blocks below. #拒絕全部對你服務器文件系統的訪問。你必須在下面其它的<Directory>區明確許可訪問web內容目錄 # <Directory /> Options +Indexes +FollowSymLinks +ExecCGI AllowOverride All Order allow,deny Allow from all Require all granted </Directory> # # Note that from this point forward you must specifically allow # particular features to be enabled - so if something's not working as # you might expect, make sure that you have specifically enabled it # below. # # # DocumentRoot: The directory out of which you will serve your # documents. By default, all requests are taken from this directory, but # symbolic links and aliases may be used to point to other locations. #你要使用【serve】的文檔的目錄。默認爲全部請求都從這個目錄獲取,可是可使用符號鏈接【symbolic link】和別名指定其它位置。 # DocumentRoot "D:\www" # # DirectoryIndex: sets the file that Apache will serve if a directory # is requested. #DirectoryIndex:設置當Apache服務獲得一個目錄請求的時候訪問的文件【即默認首頁】 # <IfModule dir_module> DirectoryIndex index.html index.php index.htm l.php </IfModule> # # The following lines prevent .htaccess and .htpasswd files from being # viewed by Web clients. #下面的行禁止.htaccess和.htpasswd文件被web客戶端查看【禁止從瀏覽器訪問.htaccess和.htpasswd文件】 # <Files ".ht*"> Require all denied </Files> # # ErrorLog: The location of the error log file. # If you do not specify an ErrorLog directive within a <VirtualHost> # container, error messages relating to that virtual host will be # logged here. If you *do* define an error logfile for a <VirtualHost> # container, that host's errors will be logged there and not here. #ErrorLog:錯誤日誌文件的位置。若是你沒有在<VirtualHost>配置中指定一個ErrorLog指令,與那個虛擬主機相關的錯誤將記錄在這裏。若是你在<VirtualHost>配置定義了錯誤消息文件,那麼主機的錯誤日誌將被記錄在那裏。 # ErrorLog "logs/error.log" #ErrorLog "|bin/rotatelogs.exe -l logs/error-%Y-%m-%d.log 2M" # # LogLevel: Control the number of messages logged to the error_log. # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. #日誌級別,控制記錄到錯誤日誌文件中的消息的數量。可能包括的值有:debug、info、notice、warn、error、crit LogLevel error <IfModule log_config_module> # # The following directives define some format nicknames for use with # a CustomLog directive (see below). # LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %b" common <IfModule logio_module> # You need to enable mod_logio.c to use %I and %O LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio </IfModule> # # The location and format of the access logfile (Common Logfile Format). # If you do not define any access logfiles within a <VirtualHost> # container, they will be logged here. Contrariwise, if you *do* # define per-<VirtualHost> access logfiles, transactions will be # logged therein and *not* in this file. # 訪問日誌文件的位置和格式。若是你沒有定義任何<VirtualHost>配置訪問日誌文件目錄,將默認使用下面目錄。 # 反之,若是你肯定定義了所有<VirtualHost>訪問日誌文件,事務【transactions】將把日誌記錄在那裏。 # # CustomLog "logs/access.log" common # # If you prefer a logfile with access, agent, and referer information # (Combined Logfile Format) you can use the following directive. #若是你指定一個日誌文件的訪問、代理和參考信息(包含日誌格式)你可使用下面的指令。 #CustomLog "logs/access.log" combined </IfModule> <IfModule alias_module> # # Redirect: Allows you to tell clients about documents that used to # exist in your server's namespace, but do not anymore. The client # will make a new request for the document at its new location. # 容許你通知客戶端之前存在於服務器名字空間的文檔,如今已經不存在了。客戶端將發送一個新請求以得到新的文檔位置。 # Example: # Redirect permanent /foo http://www.example.com/bar # # Alias: Maps web paths into filesystem paths and is used to # access content that does not live under the DocumentRoot. # Example: # Alias /webpath /full/filesystem/path #將鏈接中/webpath目錄映射到/full/filesystem/path目錄 # # If you include a trailing / on /webpath then the server will # require it to be present in the URL. You will also likely # need to provide a <Directory> section to allow access to # the filesystem path. # # ScriptAlias: This controls which directories contain server scripts. # ScriptAliases are essentially the same as Aliases, except that # documents in the target directory are treated as applications and # run by the server when requested rather than as documents sent to the # client. The same rules about trailing "/" apply to ScriptAlias # directives as to Alias. # #ScriptAlias /cgi-bin/ "F:/phpStudy/Apache/cgi-bin/" </IfModule> <IfModule cgid_module> # # ScriptSock: On threaded servers, designate the path to the UNIX # socket used to communicate with the CGI daemon of mod_cgid. # #Scriptsock cgisock </IfModule> # # "c:/Apache4/cgi-bin" should be changed to whatever your ScriptAliased # CGI directory exists, if you have that configured. # 若是你配置了腳本別名指定的CGI目錄而且它是存在的,那麼"c:/Apache24/cgi-bin"這個目錄應該改成那個目錄。 # <Directory "F:/phpStudy/Apache/cgi-bin"> AllowOverride None Options None Require all granted </Directory> <IfModule mime_module> # # TypesConfig points to the file containing the list of mappings from # filename extension to MIME-type. # TypesConfig指向一個文件,這個文件包含一個從文件擴展名到mime-type的映射列表【TypesConfig指向一個文件,這個文件包含一個文件擴展名與mime-type的映射列表】 # TypesConfig conf/mime.types # # AddType allows you to add to or override the MIME configuration # file specified in TypesConfig for specific file types. # AddType容許你爲特殊的文件類型添加或覆蓋在TypesConfig中規定的mime配置文件 # #AddType application/x-gzip .tgz # # AddEncoding allows you to have certain browsers uncompress # information on the fly. Note: Not all browsers support this. # AddEncoding容許你有特定的瀏覽器解壓縮信息的自適應能力。注意:並不是全部瀏覽器都支持。 # #AddEncoding x-compress .Z #AddEncoding x-gzip .gz .tgz # # If the AddEncoding directives above are commented-out, then you # probably should define those extensions to indicate media types: # 若是上面的AddEncoding指令被註釋,那麼你可能應該定義那些擴展名以指出媒體類型。 # AddType application/x-compress .Z AddType application/x-gzip .gz .tgz # # AddHandler allows you to map certain file extensions to "handlers": # actions unrelated to filetype. These can be either built into the server # or added with the Action directive (see below) # AddHandler容許你映射特定文件擴展名到"handlers":動做與文件類型無關。這也能夠內建於服務器或者與動做指令【Action directive】一塊兒添加(看下面) # # To use CGI scripts outside of ScriptAliased directories: # (You will also need to add "ExecCGI" to the "Options" directive.) # 爲了在腳本別名指定的目錄外使用CGI腳本:(你也須要添加"ExecCGI"到"Options"指令) # #AddHandler cgi-script .cgi # For type maps (negotiated resources): #AddHandler type-map var # # Filters allow you to process content before it is sent to the client. # Filters容許你在內容被髮送到客戶端以前處理它。 # To parse .shtml files for server-side includes (SSI): # (You will also need to add "Includes" to the "Options" directive.) # 爲「服務器端包含」分析.shtml文件:(你也須要添加「includes」到"Options"指令) # #AddType text/html .shtml #AddOutputFilter INCLUDES .shtml #AddType application/x-httpd-php .php .phtml </IfModule> # # The mod_mime_magic module allows the server to use various hints from the # contents of the file itself to determine its type. The MIMEMagicFile # directive tells the module where the hint definitions are located. # #MIMEMagicFile conf/magic #本模塊採起Unix系統下file(1)命令相同的方法:檢查文件開始的幾個字節,來斷定文件的MIME類型。它被做爲當mod_mime 沒法解析時,用來處理的「第二道防線」。 #本模塊源自於Unix系統命令file(1)的一個自由版本,它經過對來自文件的內容使用「Magic數字」和其它一些線索來斷定這個文件的具體內容是什麼。 # # Customizable error responses come in three flavors: # 1) plain text 2) local redirects 3) external redirects #可定製的錯誤響應支持三種方式:1)明文 2)本地重定向 3)外部重定向 # # Some examples: #ErrorDocument 500 "The server made a boo boo." #ErrorDocument 404 /missing.html #ErrorDocument 404 "/cgi-bin/missing_handler.pl" #ErrorDocument 402 http://www.example.com/subscription_info.html # # # MaxRanges: Maximum number of Ranges in a request before # returning the entire resource, or one of the special # values 'default', 'none' or 'unlimited'. # Default setting is to accept 200 Ranges. # 定義了在一個請求返回所有資源以前Ranges的最大數字,或者在'default', 'none' or 'unlimited'三個值中指定的一個值。 # 客戶端請求的http數量範圍。 # 若是設置的MaxRanges範圍大於服務器自己全部資源的範圍,那麼確定服務器沒法知足,只能返回服務器自己的全部資源。 #MaxRanges unlimited # # EnableMMAP and EnableSendfile: On systems that support it, # memory-mapping or the sendfile syscall may be used to deliver # files. This usually improves server performance, but must # be turned off when serving from networked-mounted # filesystems or if support for these functions is otherwise # broken on your system. # Defaults: EnableMMAP On, EnableSendfile Off # #EnableMMAP off #EnableSendfile on # Supplemental configuration # 補充配置 # # The configuration files in the conf/extra/ directory can be # included to add extra features or to modify the default configuration of # the server, or you may simply copy their contents here and change as # necessary. # conf/extra/ directory目錄中的配置文件能夠被包含以添加擴展功能或修改服務器的默認配置,或者必要時你能夠在這裏只是複製它們的內容 # Server-pool management (MPM specific) # 服務器池管理 Include conf/extra/httpd-mpm.conf Include conf/extra/httpd-php-sapi53.conf # Multi-language error messages 多語言錯誤消息 #Include conf/extra/httpd-multilang-errordoc.conf # Fancy directory listings 動態目錄列表形式配置 #Include conf/extra/httpd-autoindex.conf # Language settings 語言設置 #Include conf/extra/httpd-languages.conf # User home directories 用戶家庭目錄 #Include conf/extra/httpd-userdir.conf # Real-time info on requests and configuration 請求和配置上的實時信息 #Include conf/extra/httpd-info.conf # Virtual hosts 虛擬主機 Include conf/extra/httpd-vhosts.conf # Local access to the Apache HTTP Server Manual 本地訪問Apache Http Server手冊。 #Include conf/extra/httpd-manual.conf # Distributed authoring and versioning (WebDAV) #Include conf/extra/httpd-dav.conf # Various default settings 多種類默認設置 #Include conf/extra/httpd-default.conf #Timeout 60 # Configure mod_proxy_html to understand HTML4/XHTML1 配置mod_proxy_html,使它支持HTML4/XHTML1 #<IfModule proxy_html_module> #Include conf/extra/proxy-html.conf #</IfModule> #Include conf/vhosts.conf # Secure (SSL/TLS) connections #Include conf/extra/httpd-ssl.conf # # Note: The following must must be present to support # starting without SSL on platforms with no /dev/random equivalent # but a statically compiled-in mod_ssl. # SSLSessionCache "shmcb:logs/ssl_scache(512000)" SSLSessionCacheTimeout 300 <IfModule ssl_module> SSLRandomSeed startup builtin SSLRandomSeed connect builtin </IfModule> # Deal with user agents that deliberately violate open standards # <IfModule setenvif_module> BrowserMatch "MSIE 10.0;" bad_DNT </IfModule> <IfModule headers_module> RequestHeader unset DNT env=bad_DNT </IfModule>