創建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.www58058.com/27734