如何解析url中的数据。 (漂亮的网址)

时间:2013-12-05 03:33:42

标签: php url

因此,使用$_GET[]您的网址似乎是

yourdomain.com/index.php?page=home | lets say this loads home

我希望它是

yourdomain.com/home

我不希望有很多带有一堆index.php的文件夹,我想通过索引运行所有内容。

我该怎么做?

谢谢!

1 个答案:

答案 0 :(得分:0)

示例:

mysite.com?var1=20&var2=this_is_a_new_article

当然,在index.php文件中,您只需使用

获取值即可

$ var1 = $ _GET ['var1']; $ var2 = $ _GET ['var2'];