Home > Backend Development > PHP Tutorial > nginx 404页面处理以及pathInfo和隐藏index.php总述

nginx 404页面处理以及pathInfo和隐藏index.php总述

WBOY
Release: 2016-06-23 13:49:28
Original
852 people have browsed it

今天开发公司官网:http://www.zstime.com/,遇到一个问题,如何在nginx下设置pathInfo以及如何隐藏index.php

这里分别来讲解一下:


一、隐藏index.php

隐藏index.php需要修改nginx的配置文件,如果你是使用vhost的,需要修改如conf/vhost/你的文件名.conf

文件,整个文件如下

server {        listen       80;        server_name  www.zstime.com;        index index index.html index.htm index.php;        root /alidata/www/ZStimeBro/;        error_page 404 /error.html;        location / {                        if (!-e $request_filename){                        rewrite ^/(.*)$ /index.php/$1 last;                        }                }        location ~ \.php($|/)                {                        fastcgi_pass   127.0.0.1:9000;                        fastcgi_index  index.php;                        fastcgi_split_path_info ^(.+\.php)(.*)$;                        fastcgi_param   PATH_INFO $fastcgi_path_info;                        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;                        include        fastcgi_params;                }                location ~.*\.(gif|jpg|jpeg|png|bmp|swf)$ {                        expires 30d;                }                location ~.*\.(js/css)?$ {                        expires 1h;                }        #α???????        include /alidata/server/nginx/conf/rewrite/default.conf;        access_log  /alidata/log/nginx/access/default.log;}
Copy after login

其中添加了:

location / {                        if (!-e $request_filename){                        rewrite ^/(.*)$ /index.php/$1 last;                        }                }
Copy after login
将请求链接重定向,加上一个index.php,从而实现了去除index.php的效果

二、添加pathInfo支持

nginx本身不支持pathInfo,所有我们需要自己解析URL,将index.php

location ~ \.php($|/)                {                        fastcgi_pass   127.0.0.1:9000;                        fastcgi_index  index.php;                        fastcgi_split_path_info ^(.+\.php)(.*)$;                        fastcgi_param   PATH_INFO $fastcgi_path_info;                        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;                        include        fastcgi_params;                }
Copy after login

注意:添加pathInfo方法不止一种,但是这种方法相对简单。

其中

~ \.php($|/)
Copy after login

是匹配请求路径中包含.php的url。

三、添加404

404页面的添加折腾了一天,首先需要在nginx.conf中开启

fastcgi_intercept_errors on;
Copy after login

切记要开启这一项,不然不能自定义404页面。

之后修改vhost对应的配置文件,添加:

error_page 404 /error.html;
Copy after login
切记不能加“=”号。


如此理论上来说是结束了,但是浏览器中试了一下发现还是不行,始终显示 状态吗200!一天的时间就花在这里!!最后查看了很久,才发现不是配置文件的问题了,而是自己使用的框架的问题,我使用的时broPHP,这个小框架居然没有做页面404处理,好吧,参考了http://www.csdn123.com/html/exception/693/693838_693845_693847.htm,搞定了!


总结:有时候,你觉得出问题的地方可能是安全的,你觉得很安全的地方往往出问题!


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