mod rewrite help!
This is what I have in my .htaccess file:Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteRule ^([0-9A-Z]+) rsvp.php?i=$1 [R=301,L]
What it does is this:
Visit www.domain.com/6V2CV05MOCWU56SVWVNEODUA6
it passes that string to rsvp.php?i=6V2CV05MOCWU56SVWVNEODUA6 and shows it as this in the browser:
http://www.domain.com/rsvp.php?i=6V2...U56SVWVNEODUA6
I'd like it to show up as www.domain.com/6V2CV05MOCWU56SVWVNEODUA6 how can I do this?
Your help is MUCH appreciated!! I've been trying to figure this one out for a few days.