我有一个目录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]
但这不起作用。
谢谢!
我有一个目录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]
但这不起作用。
谢谢!