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

在Linux上更改Apache Web服务器的文档根文件夹,第1张

概述我的电脑是 Windows 8.1和 Linux模拟16双启动电脑.我在Linux Mint上创建了本地网络服务器.它的文件根目录是“/var/www\”.But我的所有项目都位于NTFS分区,我挂载到linux并使用(/media/randika/HardDisk/Works/Lab).我需要创建一个指向项目文件夹的符号链接或更改Apache服务器的文档根目录.我该怎么做? 我的000-defa 我的电脑是 Windows 8.1和 Linux模拟16双启动电脑.我在linux Mint上创建了本地网络服务器.它的文件根目录是“/var/www\”.But我的所有项目都位于NTFS分区,我挂载到linux并使用(/media/randika/Harddisk/Works/Lab).我需要创建一个指向项目文件夹的符号链接或更改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.comServeradmin webmaster@localhostdocumentRoot /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:warnErrorLog ${APACHE_LOG_DIR}/error.logCustomLog ${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
解决方法 只需更改您的Virtualhost

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上更改Apache Web服务器的文档根文件夹全部内容,希望文章能够帮你解决在Linux上更改Apache Web服务器的文档根文件夹所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1029911.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存