我了解当您在网址中$_GET['name']
index.php?name=
时必须$_GET
,但这次我没有对表单使用index.php?p=home
,它更像是p
(http://example.com/home
表示简短页面)。由于我将所有网站数据都放在不同的文件夹中,因此我想弄清楚如何制作它,以便如果网址例如http://example.com/blog
,我可以包含主页,或者如果它是{{1} },我可以包含博客页面,而不是使用get index.php?p=blog
。
如何在只有example.com/name
< - 的情况下创建一个函数,但是没有文件夹名称,但是如果该名称显示在URL中。
我在这里有什么
if($_GET['p']=='blog') {
include('pages/blog/index.php');
{
如果网页$_GET
等于index.php?p=blog
但我只希望http://example.com/blog
不是?p=blog