当前位置:论坛首页 > Linux面板 > 求助

【待反馈】伪静态保持出错

发表在 Linux面板2024-1-4 21:10 [复制链接] 3 901

为了能快速了解并处理您的问题,请提供以下基础信息:
面板、插件版本:8.0.5
系统版本:linux
问题描述: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;    }}


  相关截图(日志、错误):保持伪静态的时候提示 捕获.png

使用道具 举报 只看该作者 回复
发表于 2024-1-5 10:03:16 | 显示全部楼层
您好,您打码的这个网站的重定向你看下是不是有错误或者跟你的伪静态配置冲突了
使用道具 举报 回复 支持 反对
发表于 2024-1-5 14:13:00 | 显示全部楼层
大炮运维V587 发表于 2024-1-5 10:03
您好,您打码的这个网站的重定向你看下是不是有错误或者跟你的伪静态配置冲突了 ...

没用重定向我也把.htaccess删除了,但是就是不行 ,nginx环境  添加这个伪静态规则就出错,不管是哪个源码的伪静态规则,只要有sever这个就直接报错
使用道具 举报 回复 支持 反对
发表于 2024-1-5 14:58:41 | 显示全部楼层
cccc 发表于 2024-1-5 14:13
没用重定向我也把.htaccess删除了,但是就是不行 ,nginx环境  添加这个伪静态规则就出错,不管是哪个源 ...

打码的那个网站,你看看,就是这个网站的重定向配置有错误导致的,或者你删掉这个网站的重定向后,重启Nginx是否报错?
使用道具 举报 回复 支持 反对
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

普通问题处理

论坛响应时间:72小时

问题处理方式:排队(仅解答)

工作时间:白班:9:00 - 18:00

紧急运维服务

响应时间:3分钟

问题处理方式:宝塔专家1对1服务

工作时间:工作日:9:00 - 18:30

宝塔专业团队为您解决服务器疑难问题

立即付费处理

工作时间:09:00至24:00

快速回复 返回顶部 返回列表