Hola que tal, acabo de instalar apache 2.2 y php5 y active el modulo de mod_rewrite, ya revise en php y esta corriendo configure el httpd.conf pero cuando entro al sitio ya con el mod_rewrite ej: localhost/index.php por localhost/index.html me dice:
   Cita:  Not Found
 
The requested URL /index.php was not found on this server.
    esta configuracion tengo en mi httpd.conf:  
Código:
 <Directory />
    Options FollowSymLinks
    AllowOverride All
    Order deny,All
    Deny from all
</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.
#
#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "D:/server/htdocs">
    #
    # 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.2/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 All
    #
    # Controls who can get stuff from this server.
    #
    Order allow,deny
    Allow from all
</Directory>
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
	DirectoryIndex index.html index.htm index.php index.php3 index.phtml index.html.var
	AddType application/x-httpd-php .php .php3 .phtml
	AddType application/x-httpd-php-source .phps
</IfModule>
#
# The following lines prevent .htaccess and .htpasswd files from being 
# viewed by Web clients. 
#
<FilesMatch "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy All
</FilesMatch>
  
alguien que me pueda ayudar?