0

我正在尝试将一个简单的文件夹重定向到 /folder/index.php。

我的 URL 如下所示:site.com/folder,我想要 site.com/folder/index.php。通过网络,我只找到了相反的方式,但我确实想查看我的 index.php,以便以后可以使用 site.com/folder/index.php#344 之类的链接

我位于 /folder/ 的 .htaccess 如下所示:

Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^/(.+)$ index.php
</IfModule>

当然它不起作用。也许是 apache 忽略了我的文件?也许其他一些 .htaccess 正在干扰?我不知道,因为我是apache的新手...

谢谢你的帮助

4

1 回答 1

2

你可以跳过这个 mod_rewrite 的东西并使用 mod_dir:

DirectoryIndex index.php

有了 htaccess 文件中的那个,/folderhttp://site.com/folder会得到index.php.

于 2012-08-30T17:37:07.820 回答