Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要 apache 来为公共站点和私有站点提供服务。公共站点在下面DocumentRoot,私有站点在另一个文件夹结构上。
DocumentRoot
我正在阅读,如果我想要服务器不在 DocumentRoot 下的页面,我需要指定别名。如何指定别名?
Alias /webpath /full/filesystem/path
我在 Windows 上使用 apache。如果我的文件在C:\Testsite\site我如何让 apache 提供服务?
C:\Testsite\site
假设你想将 webpath 设置为文件,试试这个
Alias /files c:/Testsite/site <Directory "c:/Testsite/site"> Order allow,deny Allow from all </Directory>