Redirect to domain outside own server?

I want to point a domain to a subdir on a domain residing on another server - some other companys webserver, that is.
So something like:
www.mydomain.se --> www.hisdomain.se/c/

First issue is I cant find a way to point to a domain I don’t control?
Then I dont know, will there be a problem pointing to the subdir of target domain?
(Reason is, I want to get the redirection fixed for free - supports my local sportsclub - the other company will probably charge us if they are to take care of it.)

Hi pingu,

If you want do to redirect you can use the .htaccess feature (directory options in Siteworx).

Redirect permanent /index.html http://<a href="http://www.hisdomain.se/c/">www.hisdomain.se/c/</a>

If you want to masquerade the redirect and show everything under www.mydomain.se you have to use ProxyPass directive in the httpd config file for mydomain.se.
In file /etc/httpd/conf.d/mydomain.se.conf add:

ProxyPass /           http://<a href="http://www.hisdomain.se/c/">www.hisdomain.se/c</a>
ProxyPassReverse /       <a href="http://www.hisdomain.se/c/">http://www.hisdomain.se/c</a>

hth
-tsl-

Thanks a lot!