1. Open /etc/apache2/sites-available/default
sudo gedit /etc/apache2/sites-available/default
2. Change as follows
From,
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
To,
DocumentRoot /home/tapan/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /home/tapan/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
'컴퓨터' 카테고리의 다른 글
[Linux][라즈베리파이][기본설정2] 사용자 계정 추가 (0) | 2013.09.11 |
---|---|
[Linux][라즈베리파이][기본설정1] 유무선 고정 IP로 변경 (0) | 2013.09.11 |
[Linux] Ubuntu 보안 가이드 (1) | 2013.08.26 |
[Linux] Ubuntu 에 NFS 시스템 구축하기 (0) | 2013.08.24 |
Windows 7 32bit + Apache 2.2 + PHP 5.3 + Cubrid 9.1 (3) | 2013.08.08 |