nginx去掉.php后缀方法
2021-03-01 20:26
阅读:719
标签:try uri bsp div pre file location files http nginx去掉.php后缀方法 标签:try uri bsp div pre file location files http 原文地址:https://www.cnblogs.com/qingsong/p/14402937.html
/**
* 打开nginx配置文件nginx.conf,添加以下内容
* 注意层级,在 http{ server { location { #这里添加 } } } 添加
*/
location / {
try_files $uri $uri/ $uri.php?$args;
}
评论
亲,登录后才可以留言!