·设为首页收藏本站📧邮箱修改🎁免费下载专区💎积分✅卡密📒收藏夹👽聊天室
返回列表 发布新帖

请教一下这个nginx伪静态规则怎么放入宝塔面板不出错

78 4
发表于 昨天 21:54 | 查看全部 阅读模式

马上注册,免费下载更多dz插件网资源。

您需要 登录 才可以下载或查看,没有账号?立即注册

×
请教一下这个nginx伪静态规则怎么放入宝塔面板不出错   或者说 这个要在哪里修改?能否指点一下


server {    listen 80 default_server;    server_name example.com www.example.com;    access_log /srv/www/example.com/logs/access.log;    error_log /srv/www/example.com/logs/error.log;    root /srv/www/example.com/public;    index index.php index.html;    # serve static files directly    location ~* \.(jpg|jpeg|gif|css|png|js|ico|html)$ {        access_log off;        expires max;        log_not_found off;    }    # removes trailing slashes (prevents SEO duplicate content issues)    if (!-d $request_filename)    {        rewrite ^/(.+)/$ /$1 permanent;    }    # enforce NO www    if ($host ~* ^www\.(.*))    {        set $host_without_www $1;        rewrite ^/(.*)$ $scheme://$host_without_www/$1 permanent;    }    # unless the request is for a valid file (image, js, css, etc.), send to bootstrap    if (!-e $request_filename)    {        rewrite ^/(.*)$ /index.php?/$1 last;        break;    }    location / {        try_files $uri $uri/ /index.php?$query_string;    }    location ~* \.php$ {        try_files $uri = 404;        fastcgi_split_path_info ^(.+\.php)(/.+)$;        fastcgi_pass unix:/var/run/php8.0fpm.sock; # may also be: 127.0.0.1:9000;        fastcgi_index index.php;        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;        include fastcgi_params;    }    location ~ /\.ht {        deny all;    }}
我要说一句 收起回复
创宇盾启航版免费网站防御网站加速服务

评论4

独家记忆Lv.8 发表于 昨天 21:54 | 查看全部
server {  
    listen 80 default_server;  
    server_name example.com www.example.com;  
    access_log /srv/www/example.com/logs/access.log;  
    error_log /srv/www/example.com/logs/error.log;  
    root /srv/www/example.com/public;  
    index index.php index.html;  

    # Serve static files directly  
    location ~* \.(jpg|jpeg|gif|css|png|js|ico|html)$ {  
        access_log off;  
        expires max;  
        log_not_found off;  
    }  

    # Remove trailing slashes  
    if (!-d $request_filename) {  
        rewrite ^/(.+)/$ /$1 permanent;  
    }  

    # Enforce no www  
    if ($host ~* ^www\.(.*)) {  
        set $host_without_www $1;  
        rewrite ^/(.*)$ $scheme://$host_without_www/$1 permanent;  
    }  

    # Rewrite to index.php if the file does not exist  
    if (!-e $request_filename) {  
        rewrite ^/(.*)$ /index.php?/$1 last;  
        break;  
    }  

    location / {  
        try_files $uri $uri/ /index.php?$query_string;  
    }  

    location ~* \.php$ {  
        try_files $uri = 404;  
        fastcgi_split_path_info ^(.+\.php)(/.+)$;  
        fastcgi_pass unix:/var/run/php8.0fpm.sock; # 这里可能需要根据你的PHP-FPM配置调整  
        fastcgi_index index.php;  
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;  
        include fastcgi_params;  
    }  

    location ~ /\.ht {  
        deny all;  
    }  
}
我要说一句 收起回复
CrystαlLv.8 发表于 昨天 21:54 | 查看全部
AI一下,你就知道
我要说一句 收起回复
婷姐Lv.8 发表于 昨天 21:55 | 查看全部
楼上的AI很厉害呀
我要说一句 收起回复
IT618发布Lv.8 发表于 昨天 21:56 | 查看全部
宝塔里面选wordpress就可以了
我要说一句 收起回复

回复

 懒得打字嘛,点击右侧快捷回复【查看最新发布】   【应用商城享更多资源】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

创宇盾启航版免费网站防御网站加速服务
投诉/建议联系

discuzaddons@vip.qq.com

未经授权禁止转载,复制和建立镜像,
如有违反,按照公告处理!!!
  • 联系QQ客服
  • 添加微信客服

联系DZ插件网微信客服|最近更新|Archiver|手机版|小黑屋|DZ插件网! ( 鄂ICP备20010621号-1 )|网站地图 知道创宇云防御

您的IP:18.223.205.151,GMT+8, 2025-1-11 02:01 , Processed in 0.320282 second(s), 103 queries , Gzip On, Redis On.

Powered by Discuz! X5.0 Licensed

© 2001-2025 Discuz! Team.

关灯 在本版发帖
扫一扫添加微信客服
QQ客服返回顶部
快速回复 返回顶部 返回列表