$_SERVER的有关问题,小弟我说为什么一直url重写失败,去不掉index.php

WBOY
Release: 2016-06-13 11:50:16
Original
927 people have browsed it

$_SERVER的问题,我说为什么一直url重写失败,去不掉index.php
有的主机url重写后
$_SERVER['PATH_INFO']会消失,
取而代之的是
$_SERVER["ORIG_PATH_INFO"]
从而导致,根据$_SERVER['PATH_INFO']判断来去掉index.php会失效
我只是发现了这个现象,却不明白原理是为什么?
------解决方案--------------------
PATH_INFO is missing but ORIG_PATH_INFO is there with the information PATH_INFO was supposed to have.

So the php code had to be changed to check for $_SERVER['ORIG_PATH_INFO'] when $_SERVER['PATH_INFO'] is absent

见 http://www.binarytides.com/path_info-orig_path_info-apache-and-php/ 最后一段

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!