我正在尝试从 nginx.conf 中的确切文件夹重定向
给定 URL:domain.com/path1/path2/path3
重定向到:sub.domain.com/path1/path2/path3
这是我到目前为止所拥有的:
location ~* ^/path1[\/?]$ {
rewrite ^/(.*) http:sub.domain.com/$1 break;
}
我让它一起工作
location /path1 {
rewrite ^/(.*) http:sub.domain.com/$1 break;
}
问题在于它还将诸如 domain.com/path1moretext/someotherpath 之类的页面重定向到 sub.domain.com/path1moretext/someotherpath
这不是我想要的。(不得不在上面的href代码中取出“//”,因为这是我的第一篇文章,对不起)。