Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可以使用 nginx 重定向,例如: http: //mydomain.com/users/image/9999-some-word-some-word-some-word.f3fd78ba6853a5be0c9caf5517429b15.jpg
到http://mydomain.com/node/9999
好吧,我想你可以尝试类似的东西
location /users/image/([0-9]+) { try_files /node/$1.jpg =404; }
或不确定是否完全重写,但它应该接近这样的东西
location /users/image/ { rewrite /users/image/([0-9]+).* /users/image/$1.jpg; }