Bonjour,

Je n'arrive pas à me connecter à mon serveur hors mon réseau local.
Je vous remercie par avance pour votre aide.
Bernard

J'utilise wamp64 3.1.9 64 bits
Apache 2.4.39 Port 80- PHP 7.2.18
MySQL 5.7.26 Port 3306
PHP 5.6.40 for CLI (Command-Line Interface)

errorlog :
AH01630: client denied by server configuration: C:/wamp64/www/myweb
Ma configuration :
Windows 10 professionnel version 1809
Version Apache : 2.4.39

Mes virtualhosts :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Virtual Hosts
#
<VirtualHost *:80>
  ServerName localhost
  ServerAlias localhost
  DocumentRoot "${INSTALL_DIR}/www"
  <Directory "${INSTALL_DIR}/www/">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    Require local
  </Directory>
</VirtualHost>
#
<VirtualHost *:80>
	ServerName myweb
	DocumentRoot "c:/wamp64/www/wordpress"
	<Directory  "c:/wamp64/www/wordpress/">
		Options +Indexes +Includes +FollowSymLinks +MultiViews
		AllowOverride All
		Require all granted
	</Directory>
</VirtualHost>
Fichiers hosts :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
127.0.0.1 localhost
::1 localhost
#
192.168.1.140	myweb
::myweb
#
192.168.1.58	UBUNTU
 
127.0.0.1	myweb
::1	myweb