lnmp起用pathinfo并隐藏index.php
程序员文章站
2022-05-19 18:25:40
...
lnmp启用pathinfo并隐藏index.php
第1行改为:
编辑如下区段:
location ~ [^/]\.php(/|$){ # comment try_files $uri =404; to enable pathinfo try_files $uri =404; fastcgi_pass unix:/tmp/php-cgi.sock; fastcgi_index index.php; include fastcgi.conf; #include pathinfo.conf;}
第1行改为:
location ~ [^/]\.php第4行注释掉, 即前面加#
#try_files $uri =404;去掉第8行的注释
include pathinfo.conf;在location ~ [^/]\.php 上面添加区段
location /{ if (!-e $request_filename) { rewrite "^/(.*)$" /index.php last; }}重启Nginx
service nginx restart
相关文章
相关视频
上一篇: sshd_config配置说明
下一篇: DB2视图、序列、约束、外键练习测试
推荐阅读
-
Nginx隐藏index.php和Pathinfo模式配置例子
-
yii2 url重写并隐藏index.php方法
-
Nginx配置PATHINFO隐藏thinkphp index.php
-
Nginx隐藏index.php和Pathinfo模式配置例子
-
lnmp启用pathinfo并隐藏index.php,lnmppathinfo
-
Nginx配置PATHINFO隐藏index.php
-
lnmp起用pathinfo并隐藏index.php
-
Nginx配置PATHINFO隐藏index.php
-
lnmp启用pathinfo并隐藏index.php,lnmppathinfo_PHP教程
-
nginx 404页面处理以及pathInfo和隐藏index.php总述