You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Find algorithm for suggestion of massive number of redirects with same start path - candidates for creating a regex in webserver config?
E.g. a top level page was renamend and many subpages have the same rename, e.g. study => studies. This might be a candidate for a redirect with regex in webserver config.
# start path
select REGEXP_REPLACE(source_path,'^(/[^/]*)(/.*)?$', '\\1') as p1,count(*) as c from sys_redirect group by p1 order by c;
Find algorithm for suggestion of massive number of redirects with same start path - candidates for creating a regex in webserver config?
E.g. a top level page was renamend and many subpages have the same rename, e.g.
study
=>studies
. This might be a candidate for a redirect with regex in webserver config.result: (example)
The text was updated successfully, but these errors were encountered: