Probleme d'Alias avec apache
Résolu
A voir également:
- Apache alias
- Apache open office gratuit - Télécharger - Suite bureautique
- Alias requis - Forum Réseaux sociaux
- Créer un alias pour une commande ✓ - Forum Shell
- Que signifie alias de formulaire ? - Forum Programmation
- Supprimer un alias linux - Forum Linux / Unix
7 réponses
mamiemando
Messages postés
33758
Date d'inscription
jeudi 12 mai 2005
Statut
Modérateur
Dernière intervention
1 août 2025
7 877
26 mai 2005 à 09:50
26 mai 2005 à 09:50
Si ça peut t'aider...
# # This should be changed to whatever you set DocumentRoot to. # <Directory "/var/www/htdocs"> [...] <IfModule mod_alias.c> # # Note that if you include a trailing / on fakename then the server will # require it to be present in the URL. So "/icons" isn't aliased in this # example, only "/icons/". If the fakename is slash-terminated, then the # realname must also be slash terminated, and if the fakename omits the # trailing slash, the realname must also omit it. # Alias /icons/ "/var/www/icons/" <Directory "/var/www/icons"> Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all </Directory> [...] </IfModule> # End of aliases