あるドメインから別のドメインにリンクをリダイレクトし、同じリンク構造を残す方法は?
例: にリダイレクトdomain.com/ma-page/15/03/
したいdomain.org/ma-page/15/03/
私が試したこと
server_name domain.com;
#rewrite ^/(.*) http://domain.org permanent;
#rewrite ^ http://domain.org$request_uri? permanent;
rewrite ^/(.*) http://domain.org/$1 permanent;