propublica/Capitol-Words

s/word/term in url

Closed this issue · 1 comments

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

okay fixed in nginx:

    location ~ ^/word/ {
        rewrite ^/word(\/.*) /term$1 permanent;
    }

that should do the trick for this one .

--timball