如何在.htaccess中使用DirectoryIndex后访问默认索引页面

时间:2010-08-04 23:15:33

标签: php html apache .htaccess

我的网站root是网站的英文版(/index.php)。

我默认使用DirectoryIndex将我的用户指向该网站的法语版本(/fr/index.php)。

我希望人们能够点击一个链接,将它们带到英文版(/index.php)。

无论如何都可以在不更改文件夹结构的情况下执行此操作?

1 个答案:

答案 0 :(得分:0)

直接链接到/index.php。您还可以将/en设为/,并在请求/index.php/en时提供/en/。例如:

RewriteRule ^en$ index.php [QSA]
RewriteRule ^en/(.*)$ $1 [QSA]