Can anyone tell me how to redirect all requests on a domain to a particular page (not index.html) on the same domain?
Obviously using
or
Throws it into a loop and fails.
I am trying to use RewriteCond like so
But I'm having trouble getting the format correct
Thanks
<honk>*:O)</honk>
Tyres: Mine's a pint of the black stuff.
Mike: You can't drink a pint of Bovril.
Obviously using
Code:
Redirect 301 / /newpage.html
or
Code:
RewriteRule (.*)/ /newpage.html
Throws it into a loop and fails.
I am trying to use RewriteCond like so
But I'm having trouble getting the format correct
Code:
RewriteCond %{REQUEST_FILENAME} !newpage.html
RewriteRule (.*)/ /newpage.html
Thanks
<honk>*:O)</honk>
Tyres: Mine's a pint of the black stuff.
Mike: You can't drink a pint of Bovril.