I am trying to use the Apache mod_rewrite module to rewrite a URL in the httpd.conf fileas follows:
RewriteRule "^/$" "<my URL> [L]"
However, this issues a 'Redirect' - with a HTTP status code of '302', which slows the process down.
I want Apache to process this request internally so that no Redirect is created, only a forward to the new URL. I would expect this to create an HTTP status code of '200' & not 302.
Is this possible & if so, how?
RewriteRule "^/$" "<my URL> [L]"
However, this issues a 'Redirect' - with a HTTP status code of '302', which slows the process down.
I want Apache to process this request internally so that no Redirect is created, only a forward to the new URL. I would expect this to create an HTTP status code of '200' & not 302.
Is this possible & if so, how?