我最近在全新安装的 12.04 中安装了 Lamp。我想知道是否可以将 www 目录移至主目录,以便将其与 Ubuntu One 同步,或者是否有任何方法可以将 www 目录与 dropbox 或其他应用程序同步。我只想让该目录与云存储保持同步,这样我就不会丢失数据。
提前致谢。 :-)
答案1
提供的解决方案这个答案即使在 Ubuntu 12.04 中仍然可以满足您的需求。
为了您的方便,放在这里。
您可以通过编辑文件内提供的信息来更改 www 内容的默认文件夹
/etc/apache2/sites-available/default
。删除sudo gedit /etc/apache2/sites-available/default
并更改任何出现的/var/www
或 (可能是您的情况)/var/www/html
并设置您想要使用的文件夹。该文件的内容如下:
<VirtualHost *:80> ServerAdmin webmaster@localhost DocumentRoot /home/geppettvs/www <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /home/geppettvs/www/> 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 +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all </Directory> ErrorLog ${APACHE_LOG_DIR}/error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn CustomLog ${APACHE_LOG_DIR}/access.log combined Alias /doc/ "/usr/share/doc/" <Directory "/usr/share/doc/"> Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Deny from all Allow from 127.0.0.0/255.0.0.0 ::1/128 </Directory> </VirtualHost>
在这种情况下,我使用我的
/home/geppettvs/www
文件夹来放置将通过 http 连接(端口 80)向公众公开的文件。
试试看。希望这对你有帮助。
不过,我建议你在提出新问题之前先进行搜索。你的问题可能会被关闭,因为
祝你好运!