我的旧博客位于
example.com /blog/post_perma_link
我希望将 /blog/* 页面的点击转发到另一个网站
http://otherexample.com/something/something/post_perma_link
仍将托管原始 example.com 域的服务器是 nginx,因此我该怎么做才能确保此转发仅发生在 /blog/* 点击时?
答案1
在您的服务器 {} 块中尝试此操作
rewrite ^/blog/(.*) http://otherexample.com/something/something/$1 permanent;