|
BobbyDouglas -> RE: 301 Redirect ??? (1/5/2007 12:12:50)
|
If you call and they say you are doing a 301 redirect, tell them that you have checked the headers for the domain, and the headers specifically show a 302 redirect. Then ask to speak to the next level up in support. For anyone on a non windows server, if you add this into your .htaccess file, it will say that whenever someone goes to dreamkingdom.us/any-folder-and-any-file that it will send them to dreamkingdomdesigns.us/any-folder-and-any-file: RewriteEngine on
RewriteCond %{HTTP_HOST} dreamkingdom\.us [NC]
RewriteRule (.*) http://www.dreamkingdomdesigns.com/$1 [R=301,L] It looks like your website is on a windows server, so you will need to do this: Remove everything from dreamkingdom (all pages, html, asp, etc...), then create an index.asp page with the following code: <%@ Language=VBScript %>
<%
response.status="301 moved permanently"
Response.AddHeader "Location", "http://www.dreamkingdomdesigns.com/"
%> I just found this code online by doing a quick search.
|
|
|
|