I'm trying to redirect every requested url on a site to a redirect script that will conditionally redirect people based on their country.
I'm assuming I have to redirect every page EXCEPT the redirect script, or I'll have an infinite loop.
Here's what I've got that doesn't seem to work:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_URI} !/georedirect.php$
RewriteRule (.*) /georedirect.php [R=301,L]
Basically, I don't think it's not going to /georedirect.php unless I type that specific URL in.