- # 
-   
- ServerRoot "E:/SERVER/wamp/bin/apache/apache2.4.4" 
-   
-   
-   
- #Listen 12.34.56.78:80 
- Listen 80 
-   
- 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 authn_core_module modules/mod_authn_core.so 
-   
-   
- LoadModule authn_file_module modules/mod_authn_file.so 
-   
-   
- LoadModule authz_core_module modules/mod_authz_core.so 
-   
-   
- LoadModule authz_groupfile_module modules/mod_authz_groupfile.so 
- LoadModule authz_host_module modules/mod_authz_host.so 
-   
- LoadModule authz_user_module modules/mod_authz_user.so 
- LoadModule autoindex_module modules/mod_autoindex.so 
-   
- LoadModule cgi_module modules/mod_cgi.so 
-   
- LoadModule dir_module modules/mod_dir.so 
-   
- LoadModule env_module modules/mod_env.so 
-   
- LoadModule include_module modules/mod_include.so 
-   
- LoadModule isapi_module modules/mod_isapi.so 
-   
- LoadModule log_config_module modules/mod_log_config.so 
-   
- LoadModule mime_module modules/mod_mime.so 
-   
- LoadModule negotiation_module modules/mod_negotiation.so 
-   
- LoadModule rewrite_module modules/mod_rewrite.so 
-   
-   
- LoadModule php5_module "E:/SERVER/wamp/bin/php/php5.4.16/php5apache2_4.dll" 
-   
- <IfModule unixd_module> 
-   
- User daemon 
- Group daemon 
-   
- </IfModule> 
-   
-   
-   
-   
-   
-   
-   
- ServerName localhost 
-   
-   
- <Directory /> 
-     AllowOverride All 
-     Require all granted 
- </Directory> 
-   
-   
- DocumentRoot "E:/SERVER/wamp/www" 
- <Directory "E:/SERVER/wamp/www"> 
-   
-     Options Indexes FollowSymLinks 
-   
-   
-      Order Deny,Allow 
-      Allow from all 
-      Allow from 127.0.0.1 
-      Allow from ::1 
-      Allow from localhost 
- </Directory> 
-   
- <IfModule dir_module> 
-     DirectoryIndex index.php index.php3 index.html index.htm 
- </IfModule> 
-   
-   
- <Files ".ht*"> 
-     Require all denied 
- </Files> 
-   
-   
- LogLevel warn 
-   
- <IfModule log_config_module> 
-    
-     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> 
-     CustomLog "logs/access.log" common 
-     CustomLog "E:/SERVER/wamp/logs/access.log" common 
- </IfModule> 
-   
- <IfModule alias_module> 
-   
-     ScriptAlias /cgi-bin/ "E:/SERVER/wamp/cgi-bin/" 
-   
- </IfModule> 
-   
- <IfModule cgid_module> 
-    
- </IfModule> 
-   
- # 
- # "E:/SERVER/wamp/cgi-bin" should be changed to whatever your ScriptAliased 
- # CGI directory exists, if you have that configured. 
- # 
- <Directory "E:/SERVER/wamp/cgi-bin"> 
-     AllowOverride All 
-     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 conf/mime.types 
- </IfModule> 
- Include conf/extra/httpd-mpm.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 
- #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 
- # Configure mod_proxy_html to understand HTML4/XHTML1 
- <IfModule proxy_html_module> 
- Include conf/extra/proxy-html.conf 
- </IfModule> 
-   
- <IfModule ssl_module> 
- SSLRandomSeed startup builtin 
- SSLRandomSeed connect builtin 
- </IfModule> 
-   
-   
-   
- IncludeOptional "E:/SERVER/wamp/vhosts/*" 
- Include "E:/SERVER/wamp/alias/*"