> php教程 > php手册 > Nginx配置PATHINFO隐藏index.php

Nginx配置PATHINFO隐藏index.php

WBOY
풀어 주다: 2016-06-07 11:41:16
원래의
1236명이 탐색했습니다.

Nginx配置PATHINFO隐藏index.php
Nginx配置文件里放入这段代码server { <br>     listen       80;<br>     default_type text/plain;<br>     root /var/www/html;<br>     index index.php index.htm index.html;<br> <br> #隐藏index.php<br>     location / {<br>           if (!-e $request_filename) {<br>                    #一级目录<br>                   # rewrite ^/(.*)$ /index.php/$1 last;<br>                    #二级目录<br>                    rewrite ^/MYAPP/(.*)$ /MYAPP/index.php/$1 last;<br>              }  <br>     }<br> <br> #pathinfo设置<br>         location ~ \.php($|/) {<br>             fastcgi_pass   127.0.0.1:9000;<br>             fastcgi_index  index.php;<br>             fastcgi_split_path_info ^(.+\.php)(.*)$;<br>             fastcgi_param   PATH_INFO $fastcgi_path_info;<br>             fastcgi_param  SCRIPT_FILENAME   $document_root$fastcgi_script_name;<br>             include        fastcgi_params;<br>         }<br> }

AD:真正免费,域名+虚机+企业邮箱=0元

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿