我的主目录中有 index.php 文件,并希望其他子目录也使用此文件。因此,当用户拨打 example.com/subdirectory-1 / 和 example.com/subdirectory-2 / 时,他应该会看到 index.php <的内容/ strong>我的主目录的文件。
这可以用htaccess文件吗?
答案 0 :(得分:0)
在文档根目录中的htaccess中,添加以下内容:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ /index.php [L]
这会将所有现有的子目录重写为/index.php。