0

我需要 apache 来为公共站点和私有站点提供服务。公共站点在下面DocumentRoot,私有站点在另一个文件夹结构上。

我正在阅读,如果我想要服务器不在 DocumentRoot 下的页面,我需要指定别名。如何指定别名?

Alias /webpath /full/filesystem/path

我在 Windows 上使用 apache。如果我的文件在C:\Testsite\site我如何让 apache 提供服务?

4

1 回答 1

0

假设你想将 webpath 设置为文件,试试这个

Alias /files c:/Testsite/site
<Directory "c:/Testsite/site"> 
    Order allow,deny
    Allow from all
</Directory>
于 2013-11-14T21:51:36.443 回答