开发者

URL rewriting in asp

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">
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜