diff --git a/_posts/2021-11-14-Nginx-Rewrite-For-Domain.md b/_posts/2021-11-14-Nginx-Rewrite-For-Domain.md index d924946..21ff3a0 100644 --- a/_posts/2021-11-14-Nginx-Rewrite-For-Domain.md +++ b/_posts/2021-11-14-Nginx-Rewrite-For-Domain.md @@ -51,6 +51,7 @@ server { # ………… } + ``` **另外的写法:** @@ -74,18 +75,35 @@ server { # ………… } + +``` + +**其他配置:** + +```conf + # 一般和伪静态规则在一起并放在伪静态规则之前 + location / { + # 自动添加结尾斜杠 + if (!-f $request_filename) { + rewrite ^/([^\.]+[^/])$ $scheme://$host/$1$2/ permanent; + } + # ………… + } + ``` 然后重启 nginx ```bash /usr/local/nginx/sbin/nginx -s reload + ``` 下边命令为重启 lnmp ```bash /root/lnmp restart + ``` 相关推荐: @@ -98,4 +116,6 @@ server { [「备忘」Nginx 重定向(301)相关\_电脑网络\_沉冰浮水](https://www.wdssmq.com/post/20140819797.html "「备忘」Nginx 重定向(301)相关\_电脑网络\_沉冰浮水") 「当前」 +[「笔记」.htaccess 及 nginx.conf 可用变量一览\_电脑网络\_沉冰浮水](https://www.wdssmq.com/post/20220301043.html "「笔记」.htaccess 及 nginx.conf 可用变量一览\_电脑网络\_沉冰浮水") +