博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx 配置隐藏index.php效果
阅读量:5360 次
发布时间:2019-06-15

本文共 1097 字,大约阅读时间需要 3 分钟。

location / {            if (!-e $request_filename) {                rewrite  ^(.*)$  /index.php?s=/$1  last;            }}

完整如下

server    {        listen 80;        #listen [::]:80 default_server ipv6only=on;        server_name jiqing.dexin.com;        index index.html index.htm index.php admin.php;        root  /home/wwwroot/default/dexin/dragon/public;        #error_page   404   /404.html;        include enable-php-pathinfo.conf;        location /nginx_status        {            stub_status on;            access_log   off;        }        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$        {            expires      30d;        }        location ~ .*\.(js|css)?$        {            expires      12h;        }        location ~ /\.        {            deny all;        }        location / {            if (!-e $request_filename) {                rewrite  ^(.*)$  /index.php?s=/$1  last;            }        }        access_log  /home/wwwlogs/access.log;    }

它的功能很简单,如果请求的文件不存在,自动加上index.php。

这样,它既支持index.php/Home/index。也支持/Home/index

转载于:https://www.cnblogs.com/jiqing9006/p/9582732.html

你可能感兴趣的文章
DS1302时钟基础使用(含代码)
查看>>
由错误的方法中得到的
查看>>
effective c++ 笔记 (3-4)
查看>>
用一个小故事来解释什么是ERP软件。 [转载,非常有趣]
查看>>
log4net更换目录
查看>>
Openstack的dashboard开发之【浏览器兼容性】
查看>>
hive:导出数据记录中null被替换为\n的解决方案
查看>>
7.Insert Methods-官方文档摘录
查看>>
找师傅 导师
查看>>
Difference between UDP and TCP
查看>>
JSON.stringify 语法实例讲解
查看>>
linux下查看文件编码及修改编码
查看>>
iOS 使用系统相册获取选取图片的名称
查看>>
软考复习中
查看>>
【JUC】JDK1.8源码分析之Semaphore(六)
查看>>
leetcode469:等价二叉树
查看>>
javaScript 实时获取系统时间
查看>>
ES6思维导图
查看>>
第四周作业
查看>>
20151121
查看>>