Trying to set up a temp redirect using htaccess but everytime I use the code, my redirect goes to the correct page, but no images are displayed, just content. The page does display css styling, but my background images are just gone.
Here's my htaccess:
# enable basic rewriting
RewriteEngine On
# temp redirect
Options +FollowSymLinks
RewriteCond %{REMOTE_ADDR} !^123\.456\.789\.0
RewriteCond %{REQUEST_URI} !/default.html$ [NC]
RewriteRule .* /default.html [R,L]
When I take this out and just visit default.html directly, the page appears fine, all images in place. Any thoughts. Been working on this for hours and can't figure it out.
Thanks
Larkin


