nginx如何配置index.php 隐藏
程序员文章站
2022-03-23 22:28:03
...
nginx配置index.php隐藏的方法:首先找到并打开“nginx.conf”配置文件;然后添加代码为“location / {if (!-e $request_filename) {...}}”并保存即可。
推荐:《PHP视频教程》
ThinkPHP5.0的nginx配置隐藏入口文件index.php
只需要在配置文件nginx.conf添加下面这串代码
location / { if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/?s=$1 last; break; } }
如下图红色框框部分
PS:宝塔linux面板的nginx隐藏入口文件,需要在网站--当前站点的设置--配置文件下 增加上面那串代码(亲测有效)
以上就是nginx如何配置index.php 隐藏的详细内容,更多请关注其它相关文章!
上一篇: php中this和self的区别是什么
推荐阅读
-
如何隐藏掉Nginx的版本号,隐藏掉Nginx版本号
-
nginx 404页面处理以及pathInfo和隐藏index.php总述
-
nginx配置多目录访问-之phalcon如何配置
-
教你如何在CI框架中使用 .htaccess 隐藏url中index.php
-
教你如何在CI框架中使用 .htaccess 隐藏url中index.php
-
nginx跨域解决方案(教你nginx如何配置跨域)
-
nginx跨域解决方案(教你nginx如何配置跨域)
-
Nginx隐藏index.php和Pathinfo模式配置例子
-
[Linux] nginx的try_files指令实现隐藏index.php的重写
-
IIS7配置环境下隐藏index.php方法介绍