我正在尝试执行以下 nginx 重定向
/news/today-xx/index.php (xx will be moving with new page)
/blog/category-xx/today-xx/index.php
至
/article/today-xx/ (xx will be moving with new page)
/article/category-xx/today-xx/
但仍想访问存档页面。
/news/index.php and /news/
/blog/index.php and /blog/
这是我到目前为止所拥有的
location ^~ /(news|blog)/(.*) {
return 301 /article/$1;
}