删除子目录和文件扩展名

Chr*_*ton 7 .htaccess mod-rewrite

如果我有site.com/page/about.php

如何删除子目录和文件扩展名?

示例:site.com/about

Boo*_*eus 7

在.htaccess文件中使用它

Options +FollowSymLinks
RewriteEngine On 
RewriteRule ^about(\/?)$ /page/about.php [NC,L]
Run Code Online (Sandbox Code Playgroud)

在根文件夹中创建.htaccess.