是否可以使用htaccess将一个文件用于两个或更多目录?

时间:2016-11-18 23:17:29

标签: apache .htaccess url

我的主目录中有 index.php 文件,并希望其他子目录也使用此文件。因此,当用户拨打 example.com/subdirectory-1 / example.com/subdirectory-2 / 时,他应该会看到 index.php <的内容/ strong>我的主目录的文件。

这可以用htaccess文件吗?

1 个答案:

答案 0 :(得分:0)

在文档根目录中的htaccess中,添加以下内容:

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ /index.php [L]

这会将所有现有的子目录重写为/index.php。