环境:CentOS 6.6,Apache/2.2.15(yum安装)
需求:通过URL: http://192.168.75.55/luntan,访问Linux主机下的/bbs/forum路径下的网站。
实现:
一、编辑配置文件,添加别名,配置路径权限
# vim /etc/httpd/conf/httpd.conf
Alias /luntan "/bbs/forum"
<Directory "/bbs/forum">
Options Indexes
AllowOverride None
Order allow,deny
allow from all
</Directory>
二、建立测试目录和index.html文件
# mkdir -pv /bbs/forum
mkdir: created directory `/bbs'
mkdir: created directory `/bbs/forum'
# touch /bbs/forum/index.html && echo "This is the forum page." > /bbs/forum/index.html
三、重启服务,测试效果
注意:别名配置中,Alias /luntan “/bbs/forum”两者前后是否在末尾加”/”要统一,或者是如下:
Alias /luntan "/bbs/forum"
否则会出问题。
发表回复
要发表评论,您必须先登录。