I want to do an internal redirect. If a user types in eg. in the browser, I want Apache to request instead. I know this is possible with
RewriteRule ^(.*)$
But I want it to be invisible to the surfer. The URL that was typed in the browser ( should still be visible for the surfer.
So, I don't want Apache to send a 302 Moved but a standard 200 OK and just doing an internal redirect.
Also if possible, I only want to do this when the "file" does NOT exist. Eg. if is called and the file "hello.html" exists it should load as usual.
Please advice and thanks in advance
Masali
RewriteRule ^(.*)$
But I want it to be invisible to the surfer. The URL that was typed in the browser ( should still be visible for the surfer.
So, I don't want Apache to send a 302 Moved but a standard 200 OK and just doing an internal redirect.
Also if possible, I only want to do this when the "file" does NOT exist. Eg. if is called and the file "hello.html" exists it should load as usual.
Please advice and thanks in advance
Masali