Looking to do a rewritemap without httpd.conf access. Any other possibilities? (By the way, I know some PHP) Thanks!
No. Have a look at the Context: section in the docs for 1.3. (It's the same for later versions.) You can only put RewriteMaps in httpd.conf or any Included files. You can emulate the functionality of a rewrite map using a generic rewrite: RewriteRule /redir/(.*) redir.php?redir=$1 Code (markup): and then having your PHP code look up the $redir variable in a database and respond with: <?php header("Location: http://www.myredirectedsite.com"); ?> PHP: