<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
That's my rewrite code. What would be the code to have my own custom rewrite rule for "mysite.com/out/mysite/"?? I want that to go to /wp-out.php?sid=$1. I've tried numerous variations but haven't gotten anything to work without breaking wordpress. Thanks.