PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WEBDEV 2024 → apache/webdev config
apache/webdev config
Débuté par James, 02 mai 2012 17:35 - 1 réponse
Posté le 02 mai 2012 - 17:35
just set up WAMP server and all services and the default page are working OK.

I have set up a virtual host options to:

<VirtualHost *:80>
ServerAdmin xxxxxxxxx1@yyyyy.com
DocumentRoot "c:/my sites/aec101/aec_web"
ServerName aaa01.com
ErrorLog "logs/aaa101-error.log"
CustomLog "logs/aaa101-access.log" common
</VirtualHost>

When I do a page test in WD and browser only supplies a page saying page not found. Any ideas why this is not working?

Thanks in advance.

James
Posté le 02 mai 2012 - 18:20
I have also added the following to the conf\httpd.conf file

Alias /AEC101_WEB/ "C:/My Sites/AEC101/AEC101_WEB"
<Directory "C:/My Sites/AEC101/AEC101_WEB/">
Order allow,deny
Allow from all
</Directory>