Hi guys using the latest wamp and as far as I can see I've it set 43p correctly. One project is a called news the other as. They are in individual sub folders in the www folder.
I can access both from the pc there hosted on but only have access to mews via another pc on my lan.
When I try to access as, I get a this site can not be reached error.
Here is my vhosts file.
Thanks
Keith
I can access both from the pc there hosted on but only have access to mews via another pc on my lan.
When I try to access as, I get a this site can not be reached error.
Here is my vhosts file.
#
<VirtualHost *:8090>
ServerName localhost
DocumentRoot "c:/wamp64/www"
<Directory "c:/wamp64/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
Require ip 192.168.1
</Directory>
</VirtualHost>
<VirtualHost *:8090>
ServerName abserv
DocumentRoot "c:/wamp64/www/as"
<Directory "c:/wamp64/www/as/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
Require ip 192.168.1
</Directory>
</VirtualHost>
<VirtualHost *:8090>
ServerName mews
DocumentRoot "c:/wamp64/www/mewsrecordings"
<Directory "c:/wamp64/www/mewsrecordings/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
Require ip 192.168.1
</Directory>
</VirtualHost>Thanks
Keith