Apacheドキュメントルートフォルダーをセカンダリハードドライブに変更する
サーバーpcにubuntu 12.04サーバーエディションをインストールしました。ランプサーバーをインストールしました。var / wwwの場所をセカンダリハードディスクの場所に変更する必要があります。私はgedit / etc / apache2 / sites-available / defaultで何度も設定しました <VirtualHost *:80> ServerAdmin webmaster@localhost #DocumentRoot /var/www DocumentRoot /media/myserver/ <Directory /> Options FollowSymLinks AllowOverride None </Directory> #<Directory /var/www/> <Directory /media/myserver/> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all </Directory> ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ <Directory "/usr/lib/cgi-bin"> AllowOverride None …