Ciao a tutti,

sto tentando di configurare una directory per apache 2.4 con relativo alias, ma tutti i miei tentativi sono vani.

Alias /Service "I:/service/Page"
Alias /service "I:/service/Page"
<Directory "I:/service/Page">
DirectoryIndex login.php
# RewriteEngine On
# RewriteCond %{HTTPS} off
# RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
# Order Deny,Allow
# AuthType basic
# AuthName "Area Protetta"
# AuthUserFile C:/Apache24/conf/service.pwd
# Require valid-user
AllowOverride All
Order allow,deny
Allow from all
</Directory>

Se io accedo all'indirizzo http:/localhost/Page
ricevo un forbidden

se al contratio mi collego alla document root http://localhost
il sito funziona, non riesco a capire cosa non va.

DocumentRoot "c:/Apache24/htdocs"
<Directory "c:/Apache24/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.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:
# AllowOverride FileInfo AuthConfig Limit
#
AllowOverride All

#
# Controls who can get stuff from this server.
#
Require all granted
</Directory>


Grazie a tutti per le risposte