如何在虚拟主机中添加多个目录块代替多个.htaccess?

时间:2018-10-25 16:01:32

标签: .htaccess

我有2个.htaccess文件,这些文件位于主应用程序的不同目录中。我想将它们放在虚拟主机的目录块中。我该怎么做呢?我的问题是第二个目录块不起作用。有什么建议吗?

<VirtualHost *:80>

DocumentRoot "/myApp/public"
ServerName myApp

<Directory "/myApp/public">
RewriteEngine On
RewriteRule ^(.*)$ index.php
</Directory>

<Directory "/myApp/app">
Options -Indexes
</Directory>

</VirtualHost>

0 个答案:

没有答案