创建bbs目录,在里面创建html文件
[root@bluee logs]# cd /www/htdocs
[root@bluee htdocs]# ls
index.html
[root@bluee htdocs]# mkdir bbs
[root@bluee htdocs]# vim bbs/index.html
[root@bluee htdocs]#
浏览器输入192.168.1.117/bbs/index.html
可以访问bbs/index.html文件内容"Page at bbs"
然后做路径别名:
重新创建个forum目录,在里面创建html文件
[root@bluee htdocs]# mkdir /forum
[root@bluee htdocs]# ls
bbs index.html
[root@bluee htdocs]# vim /forum/index.html
在配置文件中Alias那里增加一行:
Alias /bbs/ "/forum/"
service httpd reload
刷新浏览器,可以看到forum/index.html 文件内容"Page at forum"
原创文章,作者:mississippi,如若转载,请注明出处:http://www.178linux.com/27734