Is it possible to rewrite the URL of a web (Including Domain of the web) to other domain. eg
http://www.abc.com.au/article.asp?a=12&z=23
to
http://www.xyz.com.au/artcle.asp or http://www.xyz.com.au/article.asp?a=12&z=23
if possible, 开发者_如何学Goany help or example...
Thankyou.
You can use asp to redirect, using http 301 or javascript.
<%@language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", "/new-page.asp"
%>
Or you can just set all <a>
tags to xyz.com/article.asp
'page on abc.com
<a href="xyz.com/article.asp">
精彩评论