8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

Nginx 重写:test.xxxjs 到 test.js

Torben Klein 2月前

34 0

需要一些帮助。我有这个 nginx configserver { listen 80; server_name localhot; root /opt/apps; index index.php index.html index.htm index.nginx-debian.html;

需要一些帮助。我有这个 nginx 配置

server {
    listen 80;
    server_name localhot;

    root /opt/apps;

    index index.php index.html index.htm index.nginx-debian.html;

    client_max_body_size 512M;
    server_tokens off;
    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log debug;

    error_page 404 /404.html;


    location ~ \.php$ {
            include snippets/fastcgi-php.conf;
            fastcgi_read_timeout 600s;
            fastcgi_connect_timeout 300s;
            fastcgi_pass unix:/var/run/php/php8.2-fpm.sock;
    }

    location /test.js {
            rewrite ^/test\.(.*)\.js$ /test.$1.js last;
    }

    location /api/ {
            rewrite ^/api/(.*)$ /api.php/$1 last;
    }

}

我有文件 localhost/test.2.1.9.js,它可以访问,但是当我尝试访问 localhost/test.js 时它返回 404。

帖子版权声明 1、本帖标题:Nginx 重写:test.xxxjs 到 test.js
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由Torben Klein在本站《ubuntu》版块原创发布, 转载请注明出处!
最新回复 (0)
返回
作者最近主题: