Linux
將目錄添加到 Apache Web 根目錄?
我在linux上執行httpd。
我有一個
/data/
不在 apache web 目錄 (/var/www/html/
) 中的文件夾 (),我希望使用者能夠從他們的瀏覽器訪問它。我不想移動這個文件夾。當文件夾位於 apache Web 文件夾之外時,如何使 Web 瀏覽器可以訪問該文件夾中的文件?
您可以使用mod_alias非常簡單地做到這一點
Alias /data /data/outside/documentroot <Directory /data/outside/documentroot> Order allow,deny Allow from all </Directory>
會將http://example.com/data/file1.dat之類的網址重定向 到文件 /data/outside/documentroot/file1.dat
你想要
Alias
。