首頁 > php教程 > php手册 > 主體

Nginx配置PATHINFO隐藏index.php

WBOY
發布: 2016-06-07 11:41:16
原創
1217 人瀏覽過

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
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板