在 Apache 中设置子目录

在 Apache 中设置子目录

我的Linux系统上有以下两个文件:

/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

如果这不起作用或者您需要不同的行为或更复杂的逻辑,请告诉我们。

相关内容