반응형
php로 하는게 가장 좋은 방법인것 같음
Redirect in ColdFusion
<.cfheader statuscode="301" statustext="Moved permanently">
<.cfheader name="Location" value="http://www.new-url.com">
Redirect in PHP
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http:// www.new-url. com" );
?>
Redirect in ASP
<%@ Language=VBScript %>
<% Response.Status="301 Moved Permanently" Response.AddHeader "Location",
"http:// www.new-url. com">
Redirect in ASP .NET
<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location","http://w ww.new-url. com");
}
</script>
반응형
'나름대로 유용' 카테고리의 다른 글
사이다와 찹쌀가루로 인절미 쉽게 해먹기 (0) | 2006.03.24 |
---|---|
카네기 인간관계론 (0) | 2006.02.04 |
vlc를 이용해서 스트리밍 방송을 해보기 (0) | 2006.02.01 |