因此,使用$_GET[]
您的网址似乎是
yourdomain.com/index.php?page=home | lets say this loads home
我希望它是
yourdomain.com/home
我不希望有很多带有一堆index.php的文件夹,我想通过索引运行所有内容。
我该怎么做?
谢谢!
答案 0 :(得分:0)
示例:
mysite.com?var1=20&var2=this_is_a_new_article
当然,在index.php文件中,您只需使用
获取值即可$ var1 = $ _GET ['var1']; $ var2 = $ _GET ['var2'];