S
Stefan Mueller
I'm looking for a solution to reach e.g.
'http://www.test.com/test/start.html' by entering the URL
'http://www.example.com/index.html'.
My provider offers 'Stealth URL Forwarding'. I just have to define on the
provider's web page that the URL 'http://www.example.com/index.html' has to
be forwarded to 'http://www.test.com/test/start.html'. The called URL in the
browser does not change and is always 'http://www.example.com/index.html'.
That's exactly what I'm looking for.
Unfortunately the provider of my colleague doesn't offer such a feature like
'Stealth URL Forwarding'. So we tried to program it ourself.
File: http://www.example.com/index.html
<html>
<head>
<title>Stealth URL Forwarding to
http://www.test.com/test/start.html</title>
</head>
<frameset border = "0" rows = "100%,*" frameborder = "no" marginleft =
"0" margintop = "0" marginright = "0" marginbottom ="0">
<frame src="http://www.test.com/test/start.html" scrolling = "auto"
frameborder = "no" border = "0" noresize>
<frame topmargin= "0" marginwidth = "0" scrolling = "no" marginheight =
"0" frameborder = "no" border = "0" noresize>
</frameset>
</html>
That works fine with most pages but unfortunately not with all.
I guess my provider is doing the 'Stealth URL Forwarding' somehow without
frames.
Does anyone know how he could do it? Perhaps with PHP?
Stefan
'http://www.test.com/test/start.html' by entering the URL
'http://www.example.com/index.html'.
My provider offers 'Stealth URL Forwarding'. I just have to define on the
provider's web page that the URL 'http://www.example.com/index.html' has to
be forwarded to 'http://www.test.com/test/start.html'. The called URL in the
browser does not change and is always 'http://www.example.com/index.html'.
That's exactly what I'm looking for.
Unfortunately the provider of my colleague doesn't offer such a feature like
'Stealth URL Forwarding'. So we tried to program it ourself.
File: http://www.example.com/index.html
<html>
<head>
<title>Stealth URL Forwarding to
http://www.test.com/test/start.html</title>
</head>
<frameset border = "0" rows = "100%,*" frameborder = "no" marginleft =
"0" margintop = "0" marginright = "0" marginbottom ="0">
<frame src="http://www.test.com/test/start.html" scrolling = "auto"
frameborder = "no" border = "0" noresize>
<frame topmargin= "0" marginwidth = "0" scrolling = "no" marginheight =
"0" frameborder = "no" border = "0" noresize>
</frameset>
</html>
That works fine with most pages but unfortunately not with all.
I guess my provider is doing the 'Stealth URL Forwarding' somehow without
frames.
Does anyone know how he could do it? Perhaps with PHP?
Stefan