I'm trying to ensure that everyone is redirected to my /splash
folder except for my own IP ... but the only scripts I can find are ones that deal with a single file. I need to ignore the files within the /splash
folder because I need to be able to show a logo on the splash page...
Here's my code:
RewriteCond %{REMOTE_ADDR} !=12.345.67.89
RewriteRule !^(splash$|images/|style/) splash [L]
What should be modified or included to Redirect everyone except my ip to a file?