欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

LNMP 部署tp项目隐藏入口文件index.php

程序员文章站 2024-03-26 13:51:23
...

进入如图操作:
加入这行:

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

或者:

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

LNMP 部署tp项目隐藏入口文件index.php
如果报错: [emerg] duplicate location “/” in /usr/local/nginx/conf/vhost/api.321.design.conf:55
failed
就加入前面按个,是因为root 那里已经有个/了。
LNMP 部署tp项目隐藏入口文件index.php

相关标签: ThinkPHP3.2/5.0/6.0