0
点赞
收藏
分享

微信扫一扫

thinkphp6部署到nginx

史值拥 2022-10-09 阅读 38


server {
listen 80;
server_name adleytales.com;
root "/Applications/phpstudy/WWW/tp/public";
index index.php index.html index.htm;

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


举报

相关推荐

0 条评论