I need to change something like this:
www.mydomain.com/www.otherdomain.com
to this:
www.mydomain.com/index.php?co=www.otherdomain.com
Using mod_rewrite I came up with this:
RewriteRule ^(.*.)+$ index.php?co=$1 [L]
However it is only returning "index.php" for the co
parameter and not "www.otherdomain.com" like I want it to.
Thanks for any help!