php 获取前一个页面url值,get值,post值等

一个页面不存在,跳转到404,如何把参数也带过去?

今天有个需求:
带参数跳转到一个不存在的页面 , 则被指向 404 页面 , 404 指向 index.php 首页 , 在index.php首页要获取get参数 . nginx服务器是可以获取的 , 但是Apache服务器不能获取.

案例:
1. 页面 http://localhost/myindex.php?fileName=myfile 不存在
2. 跳转到 404 页面 http://localhost/index.php
3. 此时我想在 index.php 里面获取fileName的值

php:
获取前一个页面url值:
echo $_SERVER[‘HTTP_REFERER’];
参考: http://www.cnblogs.com/M-D-Luffy/p/4921567.html

Java:
获取上一个页面值,会在url里面:
String url=request.getHeader(“Referer”);
获取本页值:
String url=request.getScheme()+”://”+ request.getServerName()+request.getRequestURI();

===============================================
Apache 404 错误页面配置:

案例: 当访问某站点时,输入地址错误,将跳转到该站点的首页 index.php
假设: http://www.xxxx.com/aaa/index.phh 不存在,则跳转到 http://www.xxxx.com/index.php页面

在这两个文件:

/alidata/server/httpd-2.4.10/conf/httpd.conf
/alidata/server/httpd-2.4.10/conf/extra/httpd-multilang-errordoc.conf

中查找

ErrorDocument 404 /404.html

改为:

ErrorDocument 404 /index.php

==================================================
nginx 404 错误页面配置:

参照:
http://www.cnblogs.com/jiangyao/archive/2010/07/10/1774981.html

    原文作者:xkjscm
    原文地址: https://blog.csdn.net/xkjscm/article/details/68946499
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞