I have a problem with the rewriterule on my openlitespeed server. Within the home page of my page(wordpress): domainweb.com I have a button that when clicked takes me to a test that is in another web application with the following domain: domainapp.com/test/any_thing. I want that when clicking on said "test" button it takes me to the application but that it continues to keep me domainweb.com/test/any_thing
#HTACCESS FINAL
RewriteEngine On
RewriteRule ^/test/(.*)$ https://dominioapp.com/test/$1/ [L]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I want to know what is wrong with my htaccess