Sto cercando di includere un file html in un altro file html mediante server side includes solo che nn riesco ancora a vedere il file incluso: mi dite dove sbaglio?

...ho decommentato le righe

# To use server-parsed HTML files
#
AddType text/html .shtml
AddHandler server-parsed .shtml .html

e poi ho aggiunto Includes in <Directory>

# This should be changed to whatever you set DocumentRoot to.
<Directory "C:/Programmi/Apache Group/Apache/htdocs">

# This may also be "None", "All", or any combination of "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
Options Indexes FollowSymLinks MultiViews

#
# This controls which options the .htaccess files in directories can
# override. Can also be "All", or any combination of "Options", "FileInfo",
# "AuthConfig", and "Limit"
#
AllowOverride None

#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all

Includes

</Directory>


senza alcun successo

Grazie