Apache multiple DocumentRoot

前端 未结 2 818
無奈伤痛
無奈伤痛 2020-12-29 20:50

How can I have the following setup in apache?

http://server/ABC/* should be served by /var/www/ABC/*

http://server/P

2条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-29 21:10

    Use Alias:

    Alias /ABC/ /var/www/ABC/
    Alias /PQR/ /var/www/PQR/
    

    Leave the document root pointing to /var/www/Others/index.php. It could do the trick. :)

提交回复
热议问题