服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > php教程 >

Nginx配置伪静态隐藏index.php入口

时间:2016-01-03 21:02来源:未知 作者:最模板 点击:
Nginx配置伪静态隐藏index.php入口,只需要在nginx增加以下代码: server { listen 192.168.66.131:8001; server_name 192.168.66.131:8001; root E:/www/zuimoban.com/; index index.php index.html; log_not_found off; access_log lo
Nginx配置伪静态隐藏index.php入口,只需要在nginx增加以下代码:

server {
    listen 192.168.66.131:8001;
    server_name 192.168.66.131:8001;
 
    root E:/www/zuimoban.com/;
 
index index.php index.html;
 
    log_not_found off;
    access_log logs/bhunetworks-access.log;
 
    charset utf-8;
 
    location ~ /\. { deny all; }
    location = /favicon.ico { }
    location = /robots.txt { }
    location / {
         if (!-e $request_filename) {
         rewrite  ^(.*)$  /index.php?s=$1  last;
          break;
        }
        }
 
    location ~ \.php$ {
        fastcgi_pass 127.0.0.1:9054;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
        include fastcgi_params;
    }
 
}
即可隐藏index.php入口代码
(责任编辑:最模板)
顶一下
(1)
100%
踩一下
(0)
0%
------分隔线----------------------------
栏目列表
热点内容