s/word/term in url
Closed this issue · 1 comments
timball commented
need to make an nginx rule to replace word w/ term pretty much everwhere . GOOG wmt claims 139 busted links like this . should be simple nginx fix .
--timball
timball commented
okay fixed in nginx:
location ~ ^/word/ {
rewrite ^/word(\/.*) /term$1 permanent;
}
that should do the trick for this one .
--timball