|
||||||
| ASP, ASP.NET and Coldfusion Microsoft's Web Development Language (ASP/ASP.NET) and Coldfusion discussion |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
If you don't know what a ASP/ASP.net 301 redirect is, you will by the end of this thread! If you need to redirect a page, unfortunately it isn't as simple as using one of the various methods - only the 301 redirect will preserve search engine rankings for the page. It is the most efficient, search engine friendly method for website redirection - the code 301 is interpreted as "moved permanently".
ASP 301 Redirect Code: Code:
<%@ Language=VBScript %> <% Response.Status="301 Moved Permanently" Response.AddHeader "Location", " http://www.new-url.com" > Code:
<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location","http://www.new-url.com");
}
</script>
|
| Sponsored Links |
|
|
|
|||
|
Quote:
I would recommend a PHP 301 redirect, or even a HTML one! |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| thread problem | dirkfirst | C# Programming | 9 | 01-15-2007 09:19 AM |
| The Ultimate PHP 301 direct/forwarding thread! | Dan | PHP Forum | 6 | 07-08-2006 03:16 PM |
| The ultimate xHTML / DHTML / HTML 301 redirection thread! | Dan | HTML Programming | 5 | 07-04-2006 05:57 PM |
| The Ultimate Codefusion 301 direct/forwarding thread! | Dan | ASP, ASP.NET and Coldfusion | 0 | 06-28-2006 08:28 PM |
| The Ultimate HTML/xHTML/DHTML 301 direct/forwarding thread! | Dan | HTML Programming | 0 | 06-28-2006 07:58 PM |
| Xav | ........ | 1276.19 |
| MeTh0Dz|Reb0rn | ........ | 1048.58 |
| marwex89 | ........ | 869.98 |
| morefood2001 | ........ | 868.04 |
| John | ........ | 865.15 |
| WingedPanther | ........ | 761.06 |
| Brandon W | ........ | 684.87 |
| chili5 | ........ | 294.12 |
| Steve.L | ........ | 216.18 |
| dargueta | ........ | 192.86 |
Goal: 100,000 Posts
Complete: 81%