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;
}
}
如果报错: [emerg] duplicate location “/” in /usr/local/nginx/conf/vhost/api.321.design.conf:55
failed
就加入前面按个,是因为root 那里已经有个/了。
推荐阅读