假设我有这些文件/文件夹:
index.php
A.php
B.php
/A
E.php
/B
F.php
C.php
/D
假设我通过 /site/ 访问页面。我想重写 URL 来执行这些任务:
/site/A -> /site/A.php
/site/B -> /site/B.php
/site/index -> /site/index.php
/site/A/F?id=828 -> /site/A/F.php?id=828
我还想在完成后屏蔽“.php”扩展名。如何以这种方式重写 URL?我看了这个问题,但我仍然不明白如何做到这一点。