I cannt create Apache Aliases in my window xp OS

I trying for creating Apache aliases but unable to create. As per installation guide i have inserted following code:


<VirtualHost *:80>



DocumentRoot C:/wamp/www/mysource_matrix/core/web



Options -Indexes FollowSymLinks



<Directory C:/wamp/www/mysource_matrix>

Order deny,allow

Deny from all

</Directory>

<DirectoryMatch "^C:/wamp/www/mysource_matrix/(core/(web|lib)|data/public|fudge)">

Order allow,deny

Allow from all

</DirectoryMatch>



<FilesMatch "\.inc$">

Order allow,deny

Deny from all

</FilesMatch>

<LocationMatch "/(CVS|\.FFV)/">

Order allow,deny

Deny from all

</LocationMatch>



Alias /__fudge C:/wamp/www/mysource_matrix/fudge

Alias /__data C:/wamp/www/mysource_matrix/data/public

Alias /__lib C:/wamp/www/mysource_matrix/core/lib

Alias / C:/wamp/www/mysource_matrix/core/web/index.php/

</VirtualHost>



But when i inserting this code my wamp server does not working

please help me to solve out.

[quote]I trying for creating Apache aliases but unable to create. As per installation guide i have inserted following code:


<VirtualHost *:80>



DocumentRoot C:/wamp/www/mysource_matrix/core/web



Options -Indexes FollowSymLinks



<Directory C:/wamp/www/mysource_matrix>

Order deny,allow

Deny from all

</Directory>

<DirectoryMatch "^C:/wamp/www/mysource_matrix/(core/(web|lib)|data/public|fudge)">

Order allow,deny

Allow from all

</DirectoryMatch>



<FilesMatch "\.inc$">

Order allow,deny

Deny from all

</FilesMatch>

<LocationMatch "/(CVS|\.FFV)/">

Order allow,deny

Deny from all

</LocationMatch>



Alias /__fudge C:/wamp/www/mysource_matrix/fudge

Alias /__data C:/wamp/www/mysource_matrix/data/public

Alias /__lib C:/wamp/www/mysource_matrix/core/lib

Alias / C:/wamp/www/mysource_matrix/core/web/index.php/

</VirtualHost>



But when i inserting this code my wamp server does not working

please help me to solve out.[/quote]



anything in your error.log? I copied the above into an apache windows server and the server started.



K