如何在 Apache 中为目录创建例外?

如何在 Apache 中为目录创建例外?

我有VirtualHost一份http://wiki.example.com多库维基):

<VirtualHost *:80>
ServerName wiki.example.com
DocumentRoot /var/www/dokuwiki

# some access restrictions on directories
</virtualHost>

/var/www/other我应该如何配置我的服务器,以便通过 URL 提供的内容http://wiki.example.com/other?在上述设置中,dokuwiki 通过内部重写机制处理 URL,并使其指向由其引擎处理的新(空)页面。

我意识到我可以创建一个新的VirtualHost,但这不是一个立即的选择(我必须保留主机名wiki.example.com

答案1

查看别名命令:

Alias /other /var/www/other

相关内容