永久黄网站色视频免费直播,yy6080三理论日本中文,亚洲无码免费在线观看视频,欧美日韩精品一区二区在线播放

無(wú)標(biāo)題文檔
wdCP系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說(shuō)明,演示,常見(jiàn)問(wèn)題,使用教程) wdCDN系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說(shuō)明,演示,常見(jiàn)問(wèn)題,使用手冊(cè))
wdOS系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說(shuō)明,演示,常見(jiàn)問(wèn)題,使用教程) wdDNS系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說(shuō)明,演示,常見(jiàn)問(wèn)題,使用手冊(cè))
注冊(cè) 發(fā)貼 提問(wèn) 回復(fù)-必看必看 wddns免費(fèi)智能 DNS 開(kāi)通 本地或虛擬機(jī)使 用wdcp 一鍵包在mysql編 譯時(shí)"卡住"
AI導(dǎo)航網(wǎng)AI應(yīng)用網(wǎng)站大全 wdcp官方技術(shù)支持/服務(wù) 阿里云8折優(yōu)惠券 無(wú)敵云 騰訊云優(yōu)惠中,現(xiàn)注冊(cè)更有260代金額券贈(zèng)送
返回列表 發(fā)帖
提問(wèn)三步曲: 提問(wèn)先看教程/FAQ索引(wdcp,wdcp_v3,一鍵包)及搜索,會(huì)讓你更快解決問(wèn)題
1 提供詳細(xì),如系統(tǒng)版本,wdcp版本,軟件版本等及錯(cuò)誤的詳細(xì)信息,貼上論壇或截圖發(fā)論壇
2 做過(guò)哪些操作或改動(dòng)設(shè)置等

溫馨提示:信息不詳,很可能會(huì)沒(méi)人理你!論壇有教程說(shuō)明的,也可能沒(méi)人理!因?yàn)?你懂的

[求助] 如何更改APACHE日志的格式?

近日想更改APACHE日志的格式,使其能記錄訪客的User-Agent信息到日志里,但是百度了很多資料,還是沒(méi)能學(xué)會(huì)

現(xiàn)在的日志記錄下來(lái)是這樣:
  1. 10.1.1.95 - e800 [18/Mar/2005:12:21:42 +0800] "GET /stats/awstats.pl?config=e800 HTTP/1.1" 200 899
復(fù)制代碼


我想改成這樣:
  1. 10.1.1.95 - e800 [18/Mar/2005:12:21:42 +0800] "GET /stats/awstats.pl?config=e800 HTTP/1.1" 200 899 "http://10.1.1.1/pv/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Maxthon)"
復(fù)制代碼


哪位大哥知道怎么修改呢?







以下為小弟http.conf的部分信息,不知道是不是改這里?
  1. <IfModule log_config_module>
  2.     #
  3.     # The following directives define some format nicknames for use with
  4.     # a CustomLog directive (see below).
  5.     #
  6.     LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  7.     LogFormat "%h %l %u %t \"%r\" %>s %b" common
  8.     <IfModule logio_module>
  9.       # You need to enable mod_logio.c to use %I and %O
  10.       LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
  11.     </IfModule>
  12.     #
  13.     # The location and format of the access logfile (Common Logfile Format).
  14.     # If you do not define any access logfiles within a <VirtualHost>
  15.     # container, they will be logged here.  Contrariwise, if you *do*
  16.     # define per-<VirtualHost> access logfiles, transactions will be
  17.     # logged therein and *not* in this file.
  18.     #
  19.     CustomLog "logs/access_log" common
  20.     #
  21.     # If you prefer a logfile with access, agent, and referer information
  22.     # (Combined Logfile Format) you can use the following directive.
  23.     #
  24.     #CustomLog "logs/access_log" combined
  25. </IfModule>
復(fù)制代碼

CustomLog "logs/access_log" common
改為
CustomLog "logs/access_log" combined
就可以
看清提問(wèn)三步曲及多看教程/FAQ索引(wdcp,v3,一鍵包,wdOS),益處多多.wdcp工具集 阿里云主機(jī)8折優(yōu)惠碼

TOP

回復(fù) 2# admin


    非常感謝

TOP

回復(fù) 2# admin


    老大,我試著更改重啟了還是不行哦,是不是我改錯(cuò)哪里了,麻煩老大幫忙在看一下

我更改后,日志還是這樣子的
  1. 95.211.139.1 - - [09/Jun/2012:23:16:04 +0800] "GET /store/shoplist-14.html HTTP/1.0" 200 -
復(fù)制代碼



最后附httpd.conf

  1. <IfModule log_config_module>
  2.     #
  3.     # The following directives define some format nicknames for use with
  4.     # a CustomLog directive (see below).
  5.     #
  6.     LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  7.     LogFormat "%h %l %u %t \"%r\" %>s %b" common
  8.     <IfModule logio_module>
  9.       # You need to enable mod_logio.c to use %I and %O
  10.       LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
  11.     </IfModule>
  12.     #
  13.     # The location and format of the access logfile (Common Logfile Format).
  14.     # If you do not define any access logfiles within a <VirtualHost>
  15.     # container, they will be logged here.  Contrariwise, if you *do*
  16.     # define per-<VirtualHost> access logfiles, transactions will be
  17.     # logged therein and *not* in this file.
  18.     #
  19.     CustomLog "logs/access_log" combined
  20.     #
  21.     # If you prefer a logfile with access, agent, and referer information
  22.     # (Combined Logfile Format) you can use the following directive.
  23.     #
  24.     #CustomLog "logs/access_log" combined
  25. </IfModule>
  26. <IfModule alias_module>
復(fù)制代碼

TOP

這樣是對(duì)的
看清提問(wèn)三步曲及多看教程/FAQ索引(wdcp,v3,一鍵包,wdOS),益處多多.wdcp工具集 阿里云主機(jī)8折優(yōu)惠碼

TOP

回復(fù) 5# admin


    終于找到問(wèn)題所在了,單單修改這里還不行,還要去修改虛擬主機(jī)配置文件

TOP

這個(gè)是默認(rèn)的記錄文件,也是所有的
虛擬主機(jī)里的是針對(duì)站點(diǎn)的
看清提問(wèn)三步曲及多看教程/FAQ索引(wdcp,v3,一鍵包,wdOS),益處多多.wdcp工具集 阿里云主機(jī)8折優(yōu)惠碼

TOP

返回列表