Apache2:DocumentRoot 从 www.example.com/destination 重定向

Apache2:DocumentRoot 从 www.example.com/destination 重定向

我正在设置 apache2,我想知道我该如何做到这一点:

我想将 www.example.org/destination 重定向到我的服务器上的某个文件夹,比如说 /home/sites/mydestinationdirectory 。

但是我不想将实际文件夹“目标”设为 /var/Www。

这在 Apache2 中可行吗?我该如何做?

答案1

使用 Apache 的别名指示。

Alias /destination /home/sites/mydestinationdirectory

<Directory /home/sites/mydestinationdirectory>
  Order allow,deny
  Allow from all
</Directory> 

另一种方法是用于mod_rewrite更复杂的设置。

相关内容