Hi folks,
Using this rewrite rule is giving me a 500. What is wrong with my syntax?
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteRule ^microsites/(.*)$ /microsites/index.php?uID=$1 [L]
What I want to do is silently write http://site.com/microsites/anythingatall to http://site.com/microsites/index.php?uID=anythingatall
Edit: the following works and does not throw an error
RewriteRule ^([0-9])$ /microsites/index.php?uID=$1 [L]
// end edit
Thanks for any advice!
JG