我已经在我的 ubuntu 机器上安装了 Apache(LAMP)网络服务器,我想做上面提到的事情。我尝试在 /var/www 目录中创建符号链接,但它只显示文件而不显示链接目录内的目录。我想将 /var/www 重定向到我的主文件夹,以便我可以访问其中包含的所有文件和目录。请帮助我。
答案1
我必须警告你,你想做的事非常危险,我不建议你这样做。
但如果您仍希望自行承担风险:
您可以通过编辑文件内提供的信息来更改 www 内容的默认文件夹/etc/apache2/sites-available/default
。拖放sudo gedit /etc/apache2/sites-available/default
并更改任何出现的/var/www
并设置您想要使用的文件夹。
该文件的内容如下:
<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)向公众公开的文件。
试试看。希望这对你有帮助。
请注意,如果您没有授予适当的权限,则在尝试对根目录中的某些文件或文件夹执行某些操作时可能会遇到一些问题,但这值得另一个问题。
祝你好运!