301 Redirect Godaddy?

Status
Not open for further replies.
I did email them, and the exact message i got was....

Thank you for contacting Online Support. This can be done through the scripting for your website. Unfortunately, we do not provide technical support with third-party scripting issues. We are very limited in the support we can offer for customer-written code or scripts. If there is evidence that our system is responsible for the error, please forward it to us, and we would be happy to look into the matter further. But at the moment this does not appear to be the case, so we regret we can not assist you further with this issue.

Please let us know if we can assist you in any other way.

Best Regards,
Joe P.
Online Support
 


Hmm, So i sent another message hoping they would do it, and i got

Thank you for contacting Online Support. Unfortunately company policy does not allow for our support staff to modify any services from a customer account.


If you've redesigned any of the pages of your Web site, but want to maintain your current search engine rankings, you can redirect Web site traffic from your old pages to the new pages without losing your rankings using a "301 redirect."
Search engine spiders will transfer your page rank and update any back links to the old page onto the new page when you use a 301 redirect. The code "301" is interpreted as "moved permanently."
For example, you can redirect traffic from oldpage.php (.asp or .jsp) to "http://www.newdomain.com/newpage.html" and retain your search engine ranking and back links.
Use the code below to redirect traffic to your pages using a 301 Redirect.
NOTE: In the code examples below, replace "oldpagename" with the name of your old Web page (the page you want to redirect traffic away from) and replace "newpage.html" with the name of the new Web page to which you want to redirect traffic.
PHP Code - save this as oldpagename.php
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.newdomain.com/newpage.html");
exit();
?>
ASP Code - save this as oldpagename.asp
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", "http://www.new-url.com"
%>

Coldfusion - save this as oldpagename.cfm
<.cfheader statuscode="301" statustext="Moved permanently">
<.cfheader name="Location" value="http://www.newdomain.com/newpage.html">

ASP .NET - save this as oldpagename.aspx

private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location","http://www.new-url.com");
}

Redirecting to WWW (htaccess Redirect)
When using a Linux server with the Apache Mod-Rewrite module enabled, you can create a .htaccess file to ensure that all requests to coolexample.com will redirect to www.coolexample.com, where "coolexample.com" is the name of your domain. The .htaccess file needs to be saved in the root directory of your old Web site, which is the same directory as your index file. You can create a .htaccess file with the following code:
RewriteEngine on
rewritecond %{http_host} coolexample.com [nc]
rewriterule (.*)$ http://www.coolexample.com/$1 [r=301,nc]
Redirecting Using IIS
When using a Windows server, you can redirect to a 301 page using IIS.
To Redirect to a 301 Page Using IIS

NOTE:This only applies to dedicated and virtual dedicated servers.

  1. In the Internet Services Manager, select the file or folder you want to redirect.
  2. From the right-click menu, select a redirection to a URL.
  3. Specify the file name of the page to which you want to redirect.
  4. Select The exact URL entered above.
  5. Select A permanent redirection for this resource.
  6. Click Apply.

Sent back, but what i don't get is, i don't actually want to Forward a page, i want to forward my non www to www :/
 
Status
Not open for further replies.