我有一个索引文件,可以加载页面的大部分可视部分(页眉、页脚等),并使用包含来填充子页面的内容。不幸的是,这意味着我的链接看起来domain/index.php?page=contact
比domain/contact
.
我将如何以一种好的方式实现后一种结构?
Apache 的 mod_rewrite是您正在寻找的。有关易于理解的示例,请参见第二页。
RewriteRule /domain/contact domain/index.php?page=contact
阅读 .htaccess 和 mod_rewrite