htaccess:自定义从任何文件夹重定向到主页

时间:2010-05-14 14:19:42

标签: apache .htaccess

我有这些文件和网站的网站:

/index.php ( that include php files contained in folder1 and folder2 )
/config.php
/folder1/
/folder2/

我想要这个:

当用户指向任何文件夹(folder1,folder2或任何其他文件夹)时,他被重定向到index.php

我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

你想要mod_rewrite。例如,要将任何请求转发到任何字母数字命名的文件夹到index.php,将文件夹的名称作为GET参数folder传递,请使用以下内容:

RewriteEngine on
RewriteRule ^([A-Za-z0-9]+)/?$ index.php?folder=$1