Tue Jun 9 11:34:38 2026 Apache configuration file [/etc/httpd/conf/httpd.conf], last modified at local time: Thu Jan 5 15:41:30 2023
If it is an xml file use view source to see uninterpreted file.
#
# This is the main Apache HTTP server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See  for detailed information.
# In particular, see
# 
# for a discussion of each configuration directive.
#
# See the httpd.conf(5) man page for more information on this configuration,
# and httpd.service(8) on using and configuring the httpd service.
#
# 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 'log/access_log'
# with ServerRoot set to '/www' will be interpreted by the
# server as '/www/log/access_log', where as '/log/access_log' will be
# interpreted as '/log/access_log'.
#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# 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 "/etc/httpd"
#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the 
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#
#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.
#
# Example:
# LoadModule foo_module modules/mod_foo.so
#

LoadModule php5_module modules/libphp5.so

Include conf.modules.d/*.conf
#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
#
# 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 apache
Group apache
# '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
#  definition.  These values also provide defaults for
# any  containers you may define later in the file.
#
# All of these directives may appear inside  containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#
#
# 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 root@localhost
#
# 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.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
#ServerName www.example.com:80
ServerName www2.ihep.ac.cn:80
#xcy add
UseCanonicalName On
#end
#
# Deny access to the entirety of your server's filesystem. You must
# explicitly permit access to web content directories in other
#  blocks below.
#

AllowOverride none
Require all denied

#
# 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.
#
#DocumentRoot "/var/www/html"
DocumentRoot "/home/httpd/html"
#
# Relax access to content within /var/www.
#

AllowOverride None
# Allow open access:
Require all granted

# Further relax access to the default document root:
#

#
# Possible values for the Options directive are "None", "All",
# or any combination of:
#   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important.  Please see
# http://httpd.apache.org/docs/2.4/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
#   Options FileInfo AuthConfig Limit
#
AllowOverride None
#
# Controls who can get stuff from this server.
#
Require all granted

#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#

DirectoryIndex index.html

#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#

Require all denied

#
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a 
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a 
# container, that host's errors will be logged there and not here.
#
ErrorLog "logs/error_log"
#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn

#
# 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

# 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

#
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a 
# container, they will be logged here.  Contrariwise, if you *do*
# define per- access logfiles, transactions will be
# logged therein and *not* in this file.
#
#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


#
# 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
#
# 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  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/ "/var/www/cgi-bin/"

#
# "/var/www/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#

AllowOverride None
Options None
Require all granted


#
# TypesConfig points to the file containing the list of mappings from
# filename extension to MIME-type.
#
TypesConfig /etc/mime.types
#
# AddType allows you to add to or override the MIME configuration
# file specified in TypesConfig for specific file types.
#
#AddType application/x-gzip .tgz
#
# AddEncoding allows you to have certain browsers uncompress
# information on the fly. Note: Not all browsers support this.
#
#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:
#
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)
#
# To use CGI scripts outside of ScriptAliased directories:
# (You will also need to add "ExecCGI" to the "Options" directive.)
#
#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.
#
# To parse .shtml files for server-side includes (SSI):
# (You will also need to add "Includes" to the "Options" directive.)
#
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml

#
# Specify a default charset for all content served; this enables
# interpretation of all content as UTF-8 by default.  To use the
# default browser choice (ISO-8859-1), or to allow the META tags
# in HTML content to override this choice, comment out this
# directive:
#
#AddDefaultCharset UTF-8
AddDefaultCharset off

#
# 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

#
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
#
# 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
#
#
# 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 if commented: EnableMMAP On, EnableSendfile Off
#
#EnableMMAP off
EnableSendfile on
# Supplemental configuration
#
# Load config files in the "/etc/httpd/conf.d" directory, if any.
IncludeOptional conf.d/*.conf
#xcy add
DirectoryIndex index.html index.htm index.py index.php
#HostnameLookups Off
#ErrorLog logs/error_log
#CustomLog logs/access_log combined
#ServerSignature Off
#ServerTokens ProductOnly
ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
ScriptAlias /cgi-ping/ "/var/www/cgi-ping/"

AllowOverride None
Options None
Order allow,deny
Allow from all

#indexOptions FancyIndexing VersionSort NameWidth=* HTMLTable
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 /icons/unknown.gif
#
# IndexIgnore is a set of filenames which directory indexing should ignore
# and not include in the listing.  Shell-style wildcarding is permitted.
#
#IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
AddLanguage en .en
AddLanguage zh-CN .zh-cn
AddLanguage zh-TW .zh-tw
#
# LanguagePriority allows you to give precedence to some languages
# in case of a tie during content negotiation.
#
# Just list the languages in decreasing order of preference. We have
# more or less alphabetized them here. You probably want to change this.
#
LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
# If the AddEncoding directives above are commented-out, then you
# probably should define those extensions to indicate media types:
#
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
#xcy add according oldwww
AddType application/x-httpd-php .php .html .htm
#
#   MIME-types for downloading Certificates and CRLs
#
AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl    .crl
#
# 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)
#
# To use CGI scripts outside of ScriptAliased directories:
# (You will also need to add "ExecCGI" to the "Options" directive.)
#
#AddHandler cgi-script .cgi
#xcy modify 2014-08-06
AddHandler cgi-script .pl .cgi
#
# Filters allow you to process content before it is sent to the client.
#
# To parse .shtml files for server-side includes (SSI):
# (You will also need to add "Includes" to the "Options" directive.)
#
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
#
# Putting this all together, we can internationalize error responses.
#
# We use Alias to redirect any /error/HTTP_.html.var response to
# our collection of by-error message multi-language collections.  We use
# includes to substitute the appropriate text.
#
# You can modify the messages' appearance without changing any of the
# default HTTP_.html.var files by adding the line:
#
#   Alias /error/include/ "/your/include/path/"
#
# which allows you to create your own set of files by starting with the
# /var/www/error/include/ files and
# copying them to /your/include/path/, even on a per-VirtualHost basis.
#
Alias /error/ "/var/www/error/"



AllowOverride None
Options IncludesNoExec
AddOutputFilter Includes html
AddHandler type-map var
Order allow,deny
Allow from all
LanguagePriority en es de fr
ForceLanguagePriority Prefer Fallback

#xcy add solute  No matching DirectoryIndex (index.html)

Options -Indexes
ErrorDocument 403 /.noindex.html

#
#xcy add 2013-11-12 for ajax
#
#Options Indexes +Includes
#


TraceEnable off

Options Indexes FollowSymLinks
AllowOverride AuthConfig
Order allow,deny
Allow from all

##Directory access control for bes

Options Indexes FollowSymLinks
AllowOverride AuthConfig
Order allow,deny
Allow from all


Options Indexes FollowSymLinks
AllowOverride AuthConfig
Order allow,deny
Allow from all

NameVirtualHost 202.38.128.8:80

ServerAdmin root@ihep.ac.cn
DocumentRoot /home/httpd/html/
ServerName www1.ihep.ac.cn
ErrorLog logs/www.ihep.ac.cn-error_log
TransferLog logs/www.ihep.ac.cn-access_log

#utf-8
#
#ServerAdmin moyl@ihep.ac.cn
#DocumentRoot /home/nheassf/public_html/
#ServerName nheassf.ihep.ac.cn
#ErrorLog logs/nheassf.ihep.ac.cn-error_log
#TransferLog logs/nheassf.ihep.ac.cn-access_log
#

ServerAdmin zhangmin@ihep.ac.cn
DocumentRoot /home/lcws10/public_html/
ServerName lcws10.ihep.ac.cn
ErrorLog logs/lcws10.ihep.ac.cn-error_log
TransferLog logs/lcws10.ihep.ac.cn-access_log

##Directory access control

Options Includes FollowSymLinks Indexes
AllowOverride All

Order allow,deny
Allow from all



ServerAdmin tipp2017@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/tipp2017/
ServerName tipp2017.ihep.ac.cn
ErrorLog logs/tipp2017.ihep.ac.cn-error_log
TransferLog logs/tipp2017.ihep.ac.cn-access_log

#higgs 2022-11-01

ServerAdmin higgs@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/higgs/
ServerName higgs2023.ihep.ac.cn
ErrorLog logs/higgs.ihep.ac.cn-error_log
TransferLog logs/higgs.ihep.ac.cn-access_log


ServerAdmin icfa2014@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/icfa2014/
ServerName icfa2014.ihep.ac.cn
ErrorLog logs/icfa2014.ihep.ac.cn-error_log
TransferLog logs/icfa2014.ihep.ac.cn-access_log


ServerAdmin posipol2011@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/posipol/
ServerName posipol2011.ihep.ac.cn
ErrorLog logs/posipol.ihep.ac.cn-error_log
TransferLog logs/posipol.ihep.ac.cn-access_log


ServerAdmin taoy@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/srcd2009/
ServerName srcd2009.ihep.ac.cn
ErrorLog logs/srcd2009.ihep.ac.cn-error_log
TransferLog logs/srcd2009.ihep.ac.cn-access_log


ServerAdmin webmaster@www.ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/agn06
ServerName agn06.ihep.ac.cn
ErrorLog logs/agn06.ihep.ac.cn-error_log
TransferLog logs/agn06.ihep.ac.cn-access_log


ServerAdmin webmaster@www.ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/tevpa08
ServerName tevpa08.ihep.ac.cn
ErrorLog logs/tevpa08.ihep.ac.cn-error_log
TransferLog logs/tevpa08.ihep.ac.cn-access_log

#
#ServerAdmin mlx@ihep.ac.cn
#DocumentRoot /home/ichep04/public_html
#ServerName ichep04.ihep.ac.cn
#ErrorLog logs/ichep04.ihep.ac.cn-error_log
#TransferLog logs/ichep04.ihep.ac.cn-access_log
#
#div1 wensp

ServerAdmin panic2017@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/panic2017
ServerName panic2017.ihep.ac.cn
ErrorLog logs/panic2017.ihep.ac.cn-error_log
TransferLog logs/panic2017.ihep.ac.cn-access_log


ServerAdmin xingcy@ihep.ac.cn
DocumentRoot /home/httpd/html/english
ServerName english.ihep.ac.cn
ErrorLog logs/english.ihep.ac.cn-error_log
TransferLog logs/english.ihep.ac.cn-access_log
Redirect permanent / http://english.ihep.cas.cn/


ServerAdmin xingcy@ihep.ac.cn
DocumentRoot /home/httpd/html/kejiyuandi
ServerName kxcb.ihep.ac.cn
ErrorLog logs/kxcb.ihep.ac.cn-error_log
TransferLog logs/kxcb.ihep.ac.cn-access_log
Redirect permanent / http://www.ihep.cas.cn/kxcb/


ServerAdmin xingcy@ihep.ac.cn
DocumentRoot /home/httpd/html/sec
ServerName sec.ihep.ac.cn
ErrorLog logs/sec.ihep.ac.cn-error_log
TransferLog logs/sec.ihep.ac.cn-access_log
Redirect permanent / http://www.ihep.cas.cn/zdsys/ihepsec/


ServerAdmin xingcy@ihep.ac.cn
DocumentRoot /home/httpd/html/div7
ServerName cc.ihep.ac.cn
ErrorLog logs/cc.ihep.ac.cn-error_log
TransferLog logs/cc.ihep.ac.cn-access_log
Redirect permanent / http://www.ihep.cas.cn/jgsz/kyxt/div7/


ServerAdmin xingcy@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/ilc-school
ServerName beijingilcschool.ihep.ac.cn
ErrorLog logs/beijingilcschool.ihep.ac.cn-error_log
TransferLog logs/beijingilcschool.ihep.ac.cn-access_log


ServerAdmin xingcy@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/sino-french
ServerName sino-french.ihep.ac.cn
ErrorLog logs/sino-french.ihep.ac.cn-error_log
TransferLog logs/sino-french.ihep.ac.cn-access_log


ServerAdmin panda@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/panda
ServerName panda.ihep.ac.cn
ErrorLog logs/panda.ihep.ac.cn-error_log
TransferLog logs/panda.ihep.ac.cn-access_log


ServerAdmin bas@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/bas
ServerName bas.ihep.ac.cn
ErrorLog logs/bas.ihep.ac.cn-error_log
TransferLog logs/bas.ihep.ac.cn-access_log


ServerAdmin ocpa2010@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/ocpa2010
ServerName ocpa2010.ihep.ac.cn
ErrorLog logs/ocpa2010.ihep.ac.cn-error_log
TransferLog logs/ocpa2010.ihep.ac.cn-access_log


ServerAdmin xingcy@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/acat2013
ServerName acat2013.ihep.ac.cn
ErrorLog logs/acat2013.ihep.ac.cn-error_log
TransferLog logs/acat2013.ihep.ac.cn-access_log


ServerAdmin xingcy@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/nufact2013
ServerName nufact2013.ihep.ac.cn
ErrorLog logs/nufact2013.ihep.ac.cn-error_log
TransferLog logs/nufact2013.ihep.ac.cn-access_log


ServerAdmin xingcy@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/inss2013
ServerName inss2013.ihep.ac.cn
ErrorLog logs/inss2013.ihep.ac.cn-error_log
TransferLog logs/inss2013.ihep.ac.cn-access_log


ServerAdmin xingcy@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/qcdmatter
ServerName qcdmatter.ihep.ac.cn
ErrorLog logs/qcdmatter.ihep.ac.cn-error_log
TransferLog logs/qcdmatter.ihep.ac.cn-access_log

#index.html mv to index.html-bck

ServerAdmin xingcy@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/pic2013
ServerName pic2013.ihep.ac.cn
ErrorLog logs/pic2013.ihep.ac.cn-error_log
TransferLog logs/pic2013.ihep.ac.cn-access_log


ServerAdmin xingcy@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/ishp2013
ServerName ishp2013.ihep.ac.cn
ErrorLog logs/ishp2013.ihep.ac.cn-error_log
TransferLog logs/ishp2013.ihep.ac.cn-access_log

#there is index.html

ServerAdmin wensp@ihep.ac.cn
DocumentRoot /home/chep/public_html
ServerName chep.ihep.ac.cn
ErrorLog logs/chep.ihep.ac.cn-error_log
TransferLog logs/chep.ihep.ac.cn-access_log

#there is no file in directory

ServerAdmin guoqy@ihep.ac.cn
DocumentRoot /home/httpd/html/cosraymc
ServerName cosraymc.ihep.ac.cn
ErrorLog logs/cosraymc.ihep.ac.cn-error_log
TransferLog logs/cosraymc.ihep.ac.cn-access_log


ServerAdmin wensp@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/qwg2017
ServerName qwg2017.ihep.ac.cn
ErrorLog logs/qwg2017.ihep.ac.cn-error_log
TransferLog logs/qwg2017.ihep.ac.cn-access_log

#wensp

ServerAdmin wensp@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/pwaathos2018
ServerName pwaathos2018.ihep.ac.cn
ErrorLog logs/pwaathos2018.ihep.ac.cn-error_log
TransferLog logs/pwaathos2018.ihep.ac.cn-access_log


ServerAdmin xingcy@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/bilcw07
ServerName bilcw07.ihep.ac.cn
ErrorLog logs/bilcw07.ihep.ac.cn-error_log
TransferLog logs/bilcw07.ihep.ac.cn-access_log

#2016-06-14

ServerAdmin jiayh@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/nnn16
ServerName nnn16.ihep.ac.cn
ErrorLog logs/nnn16.ihep.ac.cn-error_log
TransferLog logs/nnn16.ihep.ac.cn-access_log


ServerAdmin adh@ihep.ac.cn
DocumentRoot /home/httpd/html/wireless/sslvpn
ServerName sslvpn.ihep.ac.cn
ErrorLog logs/sslvpn.ihep.ac.cn-error_log
TransferLog logs/sslvpn.ihep.ac.cn-access_log


ServerAdmin adh@ihep.ac.cn
DocumentRoot /home/httpd/html/wireless/testvpn
ServerName testvpn.ihep.ac.cn
ErrorLog logs/testvpn.ihep.ac.cn-error_log
TransferLog logs/testvpn.ihep.ac.cn-access_log


ServerAdmin wangws@ihep.ac.cn
DocumentRoot /home/httpd/html/zhuanzhao
ServerName ihepgh.ihep.ac.cn
ErrorLog logs/ihepgh.ihep.ac.cn-error_log
TransferLog logs/ihepgh.ihep.ac.cn-access_log

#div1 xing-tian-hong

ServerAdmin xingth@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/wheps2015
ServerName wheps.ihep.ac.cn
ErrorLog logs/wheps.ihep.ac.cn-error_log
TransferLog logs/wheps.ihep.ac.cn-access_log


ServerAdmin xingcy@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/usr2012
ServerName usr2012.ihep.ac.cn
ErrorLog logs/usr2012.ihep.ac.cn-error_log
TransferLog logs/usr2012.ihep.ac.cn-access_log


ServerAdmin dangl@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/nstar
ServerName nstar2009.ihep.ac.cn
ErrorLog logs/nstar2009.ihep.ac.cn-error_log
TransferLog logs/nstar2009.ihep.ac.cn-access_log

#utf-8
#
#ServerAdmin xud@ihep.ac.cn
#DocumentRoot /home/httpd/html/english/conference/computec
#ServerName computec.ihep.ac.cn
#ErrorLog logs/computec.ihep.ac.cn-error_log
#TransferLog logs/computec.ihep.ac.cn-access_log
#
#div1-XingTianHong

ServerAdmin xingth@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/tau2016
ServerName tau2016.ihep.ac.cn
ErrorLog logs/tau2016.ihep.ac.cn-error_log
TransferLog logs/tau2016.ihep.ac.cn-access_log


ServerAdmin xingcy@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/pprhe07
ServerName pprhe07.ihep.ac.cn
ErrorLog logs/pprhe.ihep.ac.cn-error_log
TransferLog logs/pprhe.ihep.ac.cn-access_log


ServerAdmin icans@mail.ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/icans
ServerName www.icans-xviii.ac.cn
ErrorLog logs/icans.ihep.ac.cn-error_log
TransferLog logs/icans.ihep.ac.cn-access_log


ServerAdmin wangjq@alpha02.ihep.ac.cn
DocumentRoot /home/httpd/html/icfanews/apac01
ServerName apac01.ihep.ac.cn
ErrorLog logs/apac01.ihep.ac.cn-error_log
TransferLog logs/apac01.ihep.ac.cn-access_log


ServerAdmin sighad@mail.ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/sighad
ServerName sighad.ihep.ac.cn
ErrorLog logs/sighad.ihep.ac.cn-error_log
TransferLog logs/sighad.ihep.ac.cn-access_log

 options Indexes FollowSymLinks
AllowOverride All
RewriteEngine On
RewriteBase /
#RewriteRule ^(.*)$ http://english.ihep.cas.cn/  [R=301]
RewriteRule ^index.htm http://english.ihep.cas.cn/  [R=301]

#heps
# options Indexes FollowSymLinks
#AllowOverride All
#RewriteEngine On
#RewriteBase /
#RewriteRule ^index.htm http://www.ihep.cas.cn/dkxzz/HEPS/  [R=301]
#
#2020-07-01 find this site turn to cas
#heps

ServerAdmin root@ihep.ac.cn
DocumentRoot /home/httpd/html/heps/
#  DocumentRoot /home/heps/public_html
ServerName heps.ihep.ac.cn
ErrorLog logs/heps.ihep.ac.cn-error_log
CustomLog logs/heps.ihep.ac.cn-access_log common
RewriteEngine on
RewriteRule ^(.*) http://www.ihep.cas.cn/dkxzz/HEPS/

#v-www

ServerAdmin root@ihep.ac.cn
DocumentRoot /var/www/html/
ServerName v-www.ihep.ac.cn
ErrorLog logs/ping.ihep.ac.cn-error_log
CustomLog logs/ping.ihep.ac.cn-access_log common

#rencai

ServerAdmin oug@ihep.ac.cn
DocumentRoot /home/httpd/html/rencai
ServerName cv.ihep.ac.cn
ErrorLog logs/cv.ihep.ac.cn-error_log
CustomLog logs/cv.ihep.ac.cn-access_log common

#hb2012

ServerAdmin zhangwei@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/hb2012
ServerName hb2012.ihep.ac.cn
ErrorLog logs/hb2012.ihep.ac.cn-error_log
CustomLog logs/hb2012.ihep.ac.cn-access_log common

#hf2014

ServerAdmin jiayh@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/hf2014
ServerName hf2014.ihep.ac.cn
ErrorLog logs/hf2014.ihep.ac.cn-error_log
CustomLog logs/hf2014.ihep.ac.cn-access_log common

#hepac2014 by wensp

ServerAdmin wensp@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/hepac2014
ServerName hepac2014.ihep.ac.cn
ErrorLog logs/hepac2014.ihep.ac.cn-error_log
CustomLog logs/hepac2014.ihep.ac.cn-access_log common

#conference agn_biss

ServerAdmin agn_biss@mail.ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/agn_biss
ServerName agn-biss.ihep.ac.cn
ErrorLog logs/agn-biss.ihep.ac.cn-error_log
TransferLog logs/agn-biss.ihep.ac.cn-access_log

 options Indexes FollowSymLinks
AllowOverride All
RewriteEngine On
RewriteBase /
RewriteRule ^$ http://indico.ihep.ac.cn/conferenceDisplay.py?confId=1870  [R=301]

 options Indexes FollowSymLinks
AllowOverride All
#RewriteEngine On
#RewriteBase /
#RewriteRule ^(.*)$ http://www.ihep.ac.cn/english/conference/  [R=301]


ServerAdmin xingcy@ihep.ac.cn
DocumentRoot /home/httpd/html/visitor
ServerName visitor.ihep.ac.cn
ErrorLog logs/visitor.ihep.ac.cn-error_log
CustomLog logs/visitor.ihep.ac.cn-access_log common

# v-www

ServerAdmin fuyx@ihep.ac.cn
DocumentRoot /home/secmeeting/public_html
ServerName secmeeting.ihep.ac.cn
ErrorLog logs/secmeeting.ihep.ac.cn-error_log
CustomLog logs/secmeeting.ihep.ac.cn-access_log common


ServerAdmin dangl@ihep.ac.cn
DocumentRoot /home/limei/public_html/nstar2009
ServerName nstar2009.ihep.ac.cn
ErrorLog logs/nstar2009.ihep.ac.cn-error_log
TransferLog logs/nstar2009.ihep.ac.cn-access_log

#2020-07-01 dns delete
#modify bes3old 2018-07-04
#
#ServerAdmin wensp@ihep.ac.cn
#DocumentRoot /home/bes3/public_html
#ServerName bes3old.ihep.ac.cn
#ErrorLog logs/bes3.ihep.ac.cn-error_log
#TransferLog logs/bes3.ihep.ac.cn-access_log
#

ServerAdmin wensp@ihep.ac.cn
DocumentRoot /home/bes/public_html
ServerName bes.ihep.ac.cn
ErrorLog logs/bes.ihep.ac.cn-error_log
TransferLog logs/bes.ihep.ac.cn-access_log


ServerAdmin wensp@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/cepcws17
ServerName cepcws17.ihep.ac.cn
ErrorLog logs/cepcws17.ihep.ac.cn-error_log
TransferLog logs/cepcws17.ihep.ac.cn-access_log

#2018-10-12

ServerAdmin niuwy@ihep.ac.cn@ihep.ac.cn
DocumentRoot /home/atlasihep/public_html
ServerName atlas.ihep.ac.cn
ErrorLog logs/atlas.ihep.ac.cn-error_log
TransferLog logs/atlas.ihep.ac.cn-access_log

#2018-12-6 2019

ServerAdmin wangsheng@ihep.ac.cn@ihep.ac.cn
DocumentRoot /home/httpd/html/english/conference/arw2019
ServerName arw2019.ihep.ac.cn
ErrorLog logs/arw2019.ihep.ac.cn-error_log
TransferLog logs/arw2019.ihep.ac.cn-access_log

#utf-8

ServerAdmin limei@ihep.ac.cn
DocumentRoot /home/limei/public_html
ServerName tpcsf.ihep.ac.cn
ErrorLog logs/tpcsf.ihep.ac.cn-error_log
CustomLog logs/tpcsf.ihep.ac.cn-access_log common


ServerAdmin danglei@ihep.ac.cn
DocumentRoot /home/limei/public_html/div4-english
ServerName english.tpd.ihep.ac.cn
ErrorLog logs/tpd.ihep.ac.cn-error_log
CustomLog logs/tpd.ihep.ac.cn-access_log common


ServerAdmin zhaoxj@ihep.ac.cn
DocumentRoot /home/hxmtmgr/public_html
ServerName www.hxmt.cn
ErrorLog logs/xhmt.ihep.ac.cn-error_log
CustomLog logs/xhmt.ihep.ac.cn-access_log common

#utf-8
#
#    ServerAdmin liushan@ihep.ac.cn
#    DocumentRoot /home/ilc-china/public_html
#    ServerName ilc-china.ihep.ac.cn
#    ErrorLog logs/ilc-china.ihep.ac.cn-error_log
#    CustomLog logs/ilc-china.ihep.ac.cn-access_log common
#

ServerAdmin jiayh@ihep.ac.cn
DocumentRoot /home/epc/public_html
ServerName epc.ihep.ac.cn
ErrorLog logs/epc.ihep.ac.cn-error_log
CustomLog logs/epc.ihep.ac.cn-access_log common


ServerAdmin dangl@ihep.ac.cn
DocumentRoot /home/cfhep/public_html
ServerName cfhep.ihep.ac.cn
ErrorLog logs/cfhep.ihep.ac.cn-error_log
CustomLog logs/cfhep.ihep.ac.cn-access_log common


ServerAdmin hehl@ihep.ac.cn
DocumentRoot /home/edu/public_html
ServerName edu.ihep.ac.cn
ErrorLog logs/edu.ihep.ac.cn-error_log
CustomLog logs/edu.ihep.ac.cn-access_log common
RewriteEngine on
RewriteRule ^(.*) https://ihep.cas.cn/edu/

----Output complete, found 1165 lines----------------