Bonjour
J'ai plusieurs site internet.
Pour chaque site internet j'ai créer une fichier conf dans /etc/apache2/sites-available/
Exemple : /etc/apache2/sites-available/monsite.fr.conf
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request s Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
ServerName monsite.fr
ServerAlias www.monsite.fr
ServerAdmin webmaster.tld@online.fr
DocumentRoot /var/www/monsite.fr
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/monsite.fr-error.log
CustomLog ${APACHE_LOG_DIR}/monsite.fr-access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with a2disconf.
#Include conf-available/serve-cgi-bin.conf
#AllowOverride None # Pas accessible depuis l exterieur
#AllowOverride All # Accessible depuis l exterieur
<Directory "/var/www/monsite.fr">
AuthType Basic
AuthName "Restricted Content"
AuthUserFile /var/www/monsite.fr/.htpasswd
Require valid-user
</Directory>
Alias /pdf "/home/laurent/pdf"
<Directory "/home/laurent/pdf">
Options +Indexes +MultiViews +FollowSymLinks
AllowOverride all
Require all granted
</Directory>
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
puis j'ai ajouter dans /etc/hosts ceci :
127.0.0.1 localhost
127.0.1.1 Laurent-I7-9900K
192.168.1.11 monsite.fr
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
Depuis le pc ou est installer le serveur cela fonctionne, avec l'url suivante :
http://monsite.fr/index.php
et ne fonctionne pas avec
http://www.monsite.fr/index.php
depuis un autre poste local, quand je tape l'url suivante
http://192.168.1.11/monsite.fr/index.php
ça ne fonctionne pas ---> erreur 404 s'affiche.
Comment doit être formulé l'url à travers le réseau local pour différencier chaque site internet ?
Merci d'avance pour votre aides et conseils .