将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 Options …