|  | 
 
| 请问: 我在设置httpd.conf时,遇到这样的问题,我已经把index.html放在/var/www/html下,但是我输入htpp://localhost时总是显示test page页面,请问是哪里设置不对了?
 如下是我的httpd.conf:
 # 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" 
 #
 # Disable autoindex for the root directory, and present a
 # default Welcome page if no other index page is present.
 
   <LocationMatch "^/$">
 Options -Indexes
 ErrorDocument 403 /error/noindex.html
 </LocationMatch>
 
 #
 # UserDir: The name of the directory that is appended onto a user's home
 # directory if a ~user request is received.
 #
 # The path to the end user account 'public_html' directory must be
 # accessible to the webserver userid.  This usually means that ~userid
 # must have permissions of 711, ~userid/public_html must have permissions
 # of 755, and documents contained therein must be world-readable.
 # Otherwise, the client will only receive a "403 Forbidden" message.
 #
 # See also: http://httpd.apache.org/docs/misc/FAQ.html#forbidden
 | 
 |