尝试在我的 htaccess 中编写重写规则,以便对 /en/shop/index.html 或 /fr/shop/index.html 的任何请求都保留在服务器上,但如果用户转到任何其他页面,它会重定向到不同的页面服务器。这是我到目前为止所得到的,但它不起作用。
RewriteRule ^(.*)/shop/(.*) [L]
RewriteRule ^(.*)$ http://www.newwebsite.com/$1 [R=301]
尝试在我的 htaccess 中编写重写规则,以便对 /en/shop/index.html 或 /fr/shop/index.html 的任何请求都保留在服务器上,但如果用户转到任何其他页面,它会重定向到不同的页面服务器。这是我到目前为止所得到的,但它不起作用。
RewriteRule ^(.*)/shop/(.*) [L]
RewriteRule ^(.*)$ http://www.newwebsite.com/$1 [R=301]