我正在努力进行以下nginx重写
我有以下网址: http://www.website.com.au/product-name-anything-13087.html
我需要从末尾删除数字,以便新网址看起来像
这是我在nginx中对此失败的尝试。
http://www.website.com.au/product-name-anything.html
location ~* ^/(.+)-([0-9]+)\.html$ {
rewrite ^(.+)$ /$1 redirect;
}
任何帮助将不胜感激