こんにちは、ポート 443 のすべてのトラフィックを同じアドレスに転送したいのですが、パラメータを保持したいと考えています。
私はそれを行う方法を読み込もうとしましたが、今はこのようなものがあります
<Virtualhost x.x.x.x:443>
RewriteEngine on
RewriteCond %{REQUEST_URL} !^(.*)example2.com/test/(.*) [NC]
RewriteRule ^(.*)$ https://example1.example2.com/test/$1 [R,L]
基本的に、URIにexample2.com/test/がないものはすべて書き直したい
例www.example.com?parameter=5
I want it to behttps://example1.example2.com/test?parameter=5