2023-03-29 更新 1185 阅读 
   温馨提示: 
  本文最后更新于2023年03月29日,已超过951天没有更新,若内容或图片失效,请留言反馈。 
 该方法是在 Nginx 下设置的
- 如果你是使用的面板,把默认站点设置为:未设置默认站点
 - 打开 Nginx 配置文件
 - 找到 server 段,新增或修改以下代码:
 
server
    {
        listen 80;
        server_name www.zimoou.com zimoou.com;
        charset utf-8;
        index index.html index.htm index.php;
        if ($http_host !~ “^www\.zimoou\.com$”){
        rewrite ^(.*) https://zimoou.com$1 redirect;
        }- 在用 IP 地址浏览你的站点,惊喜就来了。
 
Warning: Undefined array key "HTTP_ACCEPT_LANGUAGE" in /www/wwwroot/zimoou.com/usr/themes/Feng/comments.php on line 5
Deprecated: stripos(): Passing null to parameter #1 ($haystack) of type string is deprecated in /www/wwwroot/zimoou.com/usr/themes/Feng/comments.php on line 5
评论已关闭