小编Tob*_*ias的帖子

用PHP删除.php扩展名

我可以在这里使用一些帮助.我正在使用它来修复我的URL,但我无法弄清楚如何删除.php扩展名.URL现在看起来像这样:http://mydomain.com/page.php/foo/123/bar/456

function decode_URL_parameters() {
   $path = @$_SERVER['PATH_INFO'];
   $url_array=explode('/',$path);

   array_shift($url_array);

   while ($url_array) {
      $_GET[$url_array[0]] = $url_array[1];
      array_shift($url_array);
      array_shift($url_array);
   }
}
Run Code Online (Sandbox Code Playgroud)

有任何想法吗?

/托比亚斯

php clean-urls

3
推荐指数
1
解决办法
9783
查看次数

标签 统计

clean-urls ×1

php ×1