Si j'ouvre mon application Yii2 avec l'url http://IP_ADDRESS/DIR_NAME il fonctionne parfaitement. Maintenant, j'ai pointé mon domaine vers le chemin /var/www/html/. Mais si j'ouvre mon domaine dans le navigateur, il affiche ma structure de répertoire du projet yii2. Donc avec http://IP_ADDRESS/DIR_NAME Je peux accéder à mon application mais pas au nom de domaine. La réécriture d'Apache est activée pour /var/www/html/ dans 000-default.conf.
<Directory /var/www/html>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
-Contenu de 000-default.conf
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory /var/www/html>
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
-Contenu de domain.com.conf
<VirtualHost *:80>
ServerName domain.com
ServerAlias www.domain.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/domain.com
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>