J'ai installé apache2 pour l'utiliser comme serveur de développement. J'ai créé mon site, et il se charge correctement dans mon navigateur, sauf que...
Les feuilles de style CSS externes ne se chargent pas. Les CSS en ligne fonctionnent, et les style
fonctionne, mais link rel="stylesheet" type="text/css" href="style.css"
ne semble pas faire quoi que ce soit.
Mon apache2.conf n'est pas édité. Voici mon fichier php5.conf et mon fichier site conf, au cas où ils seraient nécessaires :
mods-enabled/php5.conf
<IfModule mod_php5.c> <FilesMatch "\.ph(p3?|tml)$"> SetHandler application/x-httpd-php </FilesMatch> <FilesMatch "\.phps$"> SetHandler application/x-httpd-php-source </FilesMatch> <FilesMatch ".+\.html$"> SetHandler application/x-httpd-php </FilesMatch> <FilesMatch ".+\.htm$"> SetHandler application/x-httpd-php </FilesMatch> <FilesMatch ".+\.xhtml$"> SetHandler application/x-httpd-php </FilesMatch> # To re-enable php in user directories comment the following lines # (from <IfModule ...> to </IfModule>.) Do NOT set it to On as it # prevents .htaccess files from disabling it. <IfModule mod_userdir.c> <Directory /home/*/public_html> php_admin_value engine Off </Directory> </IfModule> </IfModule>
sites-enables/au.camarillo.conf
NameVirtualHost au.camarillo <VirtualHost au.camarillo> ServerAdmin daniel@camarillo #we want to be able to access the web site using www.au.camarillo or au.camarillo ServerAlias www.au.camarillo DocumentRoot /home/daniel/sites/au #we want specific log file for this server CustomLog /var/log/apache2/au.camarillo-access.log combined </VirtualHost>