apache共享目录文件配置
2024-01-09 12:18:14
httpd配置文件路径
/etc/httpd/conf/httpd.conf
配置单个节点
httpd中原本有一个配置
<Directory "/var/www">
AllowOverride None
# Allow open access:
Require all granted
</Directory>
# Further relax access to the default document root:
<Directory "/var/www/html">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.4/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
#
# Controls who can get stuff from this server.
#
Require all granted
</Directory>
增加配置的目录
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
DirectoryIndex index.html
Alias /test "/xxx"
Alias /reports "/xxx1"
<Directory xxx>
AllowOverride None
Options Indexes FollowSymLinks
Require all granted
</Directory>
<Directory xxx1>
AllowOverride None
Options Indexes FollowSymLinks
Require all granted
</Directory>
</IfModule>
其中xxx是指本地的某个绝对路径映射到http://localhost/test
xxx1是指本地的某个绝对路径映射到http://localhost/reports
配置完成保存
重启
?systemctl restart httpd
?
文章来源:https://blog.csdn.net/yinshuilan/article/details/135473627
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!