Jahas joo. Ei tuosta tullut hullua hurskaammaksi joten asensin omalle koneelleni Apachen että voin testata.
Eli siis, näemmä asetukset ovat muuttuneet. Enää eivät ole kuten aikoinaan.
Nykyisin täytyy tehdä näin:
1)
sudo nano /etc/apache2/sites-enabled/000-default
(Jos ei ole 000-default, koeta default)
2) Etsi rivi missä lukee tälläistä:
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
#RedirectMatch ^/$ /apache2-default/
</Directory>
ja vaihda muotoon
DocumentRoot /home/mick/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /home/mick/www>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
#RedirectMatch ^/$ /apache2-default/
</Directory>
Tallenna tiedosto (Ctrl + o) ja lopeta (Ctrl + x).
3) Käynnistä apache uusiksi:
sudo /etc/init.d/apache2 restart
4) Katso pääsetkö nyt nettiselaimellasi automaattisesti oikeaan hakemistoon.
HUOM! Käyttäjäoikeudet jos ovat väärät ko. kotikansiosi alakansiossa, tulee valitusta että ei ole oikeuksia.
Nämä pitää vaihtaa (jos et ole jo vaihtanut).
Lyhyesti:
sudo chgrp www-data /home/mick/www