linux - 在 Linux 上更改 Apache Web 服务器的文档根文件夹

标签 linux apache document-root

我的电脑是 Windows 8.1 和 Linux mint 16 双启动电脑。我在 Linux Mint 上创建了本地 Web 服务器。它的文档根目录是“/var/www”。但是我所有的项目都位于我安装到的 NTFS 分区上linux 和使用(/media/randika/HardDisk/Works/Lab)。我需要创建一个符号链接(symbolic link)到项目文件夹或更改 Apache 服务器的文档根目录。我该怎么做?`

我的 000-default.conf 文件位于 sites-available 文件夹中

<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com

ServerAdmin webmaster@localhost
DocumentRoot /var/www

# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn

ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined

# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

最佳答案

只需更改您的虚拟主机

DocumentRoot /var/www

DocumentRoot /media/randika/HardDisk/Works/Lab

并在新目录上添加权限

<Directory "/media/randika/HardDisk/Works/Lab">
    Order Allow,Deny
    Allow from all
    Options Indexes
    AllowOverride AuthConfig
</Directory>

并重启Apache以重新加载配置

关于linux - 在 Linux 上更改 Apache Web 服务器的文档根文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23496751/

相关文章:

Python Tkinter : Attach scrollbar to listbox as opposed to window

c - visual studio 2010 中的 pthread(POSIX 线程)

java随机字符串生成和生日悖论

linux - 如何在apache DocumentRoot中添加$HOME变量

php - 如何在 php 中获取我的工作文件夹的路径?

c - 如何将 'ls' 命令转换为 'cat' 命令?

c - C : chdir() Behaving Odd 中的 Linux Shell

java - 无法通过 Eclipse Kepler 启动 tomcatv7

PHP 奇怪的 DOCUMENT_ROOT

php - 在 PHP 中回显 $_SERVER ['DOCUMENT_ROOT' ] 的结束部分或最后一个文件夹