nginx 重写最终条带号码的规则

nginx rewrite rule for strip numbers from final

有人可以在 nginx 上或使用 .htaccess 帮助我解决这个问题吗?

我想重定向 url,例如:

[http][www]domainName.tld/folderName/a-name-with-dashes-15-and-numbers-and-a-number-of-at-least-5-digits

变成

[http][www]domainName.tld/newFolderName/a-name-with-dashes-15-and-numbers

[http][www]domainName.tld/a-name-with-dashes-15-and-numbers

带 www 或不带 www。
一个更真实的例子(没有域):

/folderName/test-1-test-again-123456789

变成

/newFolder/test-1-test-again
# or
/test-1-test-again

非常感谢

@稍后编辑:从服务器块添加 Nginx 配置

    listen ip:80;

    server_name domain.tld www.domain.tld;

    root   /var/www/domain.tld/web;


    if ($http_host = "www.domain.tld") {
        rewrite ^ $scheme://domain.tld$request_uri? permanent;
    }


    index index.html index.htm index.php index.cgi index.pl index.xhtml;



    error_log /var/log/domain.tld/error.log;
    access_log /var/log/domain.tld/access.log combined;

    location ~ /\. {
        deny all;
        access_log off;
        log_not_found off;
    }

    location = /favicon.ico {
        log_not_found off;
        access_log off;
    }

    location = /robots.txt {
        allow all;
        log_not_found off;
        access_log off;
    }

    location /stats {

        index index.html index.php;
        auth_basic "Members Only";
        auth_basic_user_file /var/www/clients/client/web/web/stats/.htpasswd_stats;
    }

    location ^~ /awstats-icon {
        alias /usr/share/awstats/icon;
    }

    location ~ \.php$ {
        try_files /c91e3e9dc234ca8eec5e7e5309e2fcca.htm @php;
    }

    location @php {
        try_files $uri =404;
        include /etc/nginx/fastcgi_params;
        fastcgi_pass unix:/var/lib/php5-fpm/web24.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_intercept_errors on;
    }

    client_max_body_size 20M;

    location ~* ^.+\.(css|png|ico|ttf|rss|atom|js|jpg|jpeg|gif|zip|tgz|gz|rar|bz2|doc|xls|ppt|tar|mid|midi|wav|bmp|rtf)$ {
        access_log off;
        log_not_found off;
        expires max;
        add_header Pragma public;
        add_header Cache-Control: public;
    }

    location ~* ^/wp-admin/.*.(html|htm|shtml|php)$ {
       client_max_body_size 30M;
    }

    location ~* ^/wp-content/uploads/.*.(html|htm|shtml|php)$ {
        types { }
        default_type text/plain;
    }

    location ~* ^/static/.*.(html|htm|shtml|php)$ {
        types { }
        default_type text/plain;
    }

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

    location ~* (wp-comments-posts|wp-login)\.php$ {
       if ($http_referer !~ ^(http://www.domain.tld) ) {
          return 405;
       }
    }

尝试这样的事情

location ~ '(.*)\-[0-9]{5,}$' {
  return 301 $scheme://$server_name;
}

如果 url 末尾的数字多于 5 个

,这应该去除所有尾随数字