在 Apache 設定子目錄

在 Apache 設定子目錄

我的linux系統上有以下2個檔案:

/var/www/index.html= www.mywebsite.com

/var/www/foo/bar/index.html= www.mywebsite.com/foo/bar/index.html

我試圖弄清楚如何在 Apache 中設定它,以便當用戶轉到“www.mywebsite.com/somedirectory“他們的目標是”/var/www/foo/bar/index.html“ 文件。

所以....

/var/www/index.html = www.mywebsite.com

/var/www/food/bar/index.html = www.mywebsite.com/somedirectory

答案1

您應該澄清您的具體需求和當前配置,但執行此操作的簡單方法是透過mod_alias

Alias /somedirectory /var/www/foo/bar

如果這不起作用或您需要不同的行為或更複雜的邏輯,請告訴我們。

相關內容