Your question has nothing to do with DNS.
DNS cannot ever map to a URL. All it can ever do is map a hostname to an IP address (or vice versa).
For example, your DNS server can map (via a CNAME) 'outside.myserver.int' to 'www.serverx.com' but it cannot add the protocol (
http://) nor can it add the path (/folder/file)
What you're asking for needs to be done in your
web server, not your DNS server.
Your web server needs to detect requests from clients trying to access 'outside.myserver.int' and generate the appropriate redirects.
Assuming your web server is running Mac OS X Server this can be done by just creating a new
Site for outside.myserver.int and adding an alias:
Alias .*
http://www.serverx.com/folder/file
Now whenever it sees a request for outside.myserver.int it will redirect the user to the appropriate place.