标签: .htaccess mod-rewrite
如果我有site.com/page/about.php
如何删除子目录和文件扩展名?
示例:site.com/about
答案 0 :(得分:7)
在.htaccess文件中使用此功能
Options +FollowSymLinks RewriteEngine On RewriteRule ^about(\/?)$ /page/about.php [NC,L]
在根文件夹中创建.htaccess。