.htaccess将index.php重写回index.php所在的目录

时间:2013-08-12 23:07:28

标签: php .htaccess mod-rewrite

我的目录为localhost/testing/pages/index.php

如果用户localhost/testing/pages/延长localhost/testing/pages/index.php,我该如何将用户重定向到index.php

我试过用这个:

RewriteEngine On
Rewrite %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC]

但这不起作用。

谢谢!

1 个答案:

答案 0 :(得分:0)

尝试:

RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /(.*)index\.php
RewriteRule ^ /%1 [L,R=301]