I'm trying to get this htaccess code to work:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^fld/(.*) http://example.com/fld/$1?proxy=http://example.com [P]
RewriteRule ^/?$ http://example.com/fld/app/cobra/847?remoteaddr=%{REMOTE_ADDR}&proxy=http://mydomain.com/customfolder [QSA,P]
</IfModule>
mod_rewrite is enabled, but I've been told that mod_proxy is not enabled/available on Litespeed.
Is there a PHP workaround to running this?
Thanks