Hi, How can I have a sub-directory under a domain point to another server, for example loading http://www.example.com/myscript/ should load the script located on a different server than xyz.com, this can be achieved via using a sub-domain but I need to avoid that. example.com - loads from server 1 example/myscript/ - loads from another server 2 I am using litespeed.
use iframe? <html><head> <title>your title</title></head> <body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0"><iframe src="http://yoursecondserver" height="100%" width="100%" frameborder=0 border=0 scrolling=no> </body> </html> Code (markup):
Subdirectories can't be pointed like subdomains. You can do a redirect to the other server with a simple php script or htaccess though.