Hi
I am using the following rule to redirect all users to a holding page:
RewriteCond %{REQUEST_URI} !/holding.html$
RewriteCond %{REMOTE_HOST} !^127\.0\.0\.1
RewriteRule $ /holding.html [R=302,L]
However the holding page as a an image in it which will not display.
I suspect this is because all requests are being redirected?
How can I get the htaccess rule to show the image in my holding page?!
Thanks