Hi, I have changed domain name a few days ago. The old one was a free domain I have got from dynDns.org: mec.mine.nu
The new one I have bought from goDaddy: www.webprovince.com
The old domain, mec.mine.nu, is still pointing to my site. I use a 301 and a redirect for clients requesting a page prefixed with the old domain name to the new www.webprovince.com domain name.
This is the jsp(Java Server Pages) code I use to do the redirect:
<%
String requestedHost = request.getHeader("host");
if(requestedHost != null && requestedHost.equalsIgnoreCase("mec.mine.nu") || requestedHost.equalsIgnoreCase("webprovince.com")) {
response.setStatus(response.SC_MOVED_PERMANENTLY);
response.addHeader("Location","http://www.webprovince.com" + request.getRequestURI());
}
%>
Note that it is still the same site on the same physical location, the only thing changed is the domain name.
I submitted the old domain - mec.mine.nu - to dmoz about 2 weeks ago, and of course I haven't got listed yet.
The title I used in the submission of the old domain name was the same as the domain name, i.e. mec.mine.nu. Of course I would like to change this, but I don't know how to change a submission when you not have got listed.
My questions are if I should submit again to dmoz with the new domain name, www.webprovince.com, even thou it point to the same site as mec.mine.nu does?
Could this be considered spamming?
Any suggestions on what I should do?I know they have an update listing service, but since I am not listed yet...
If the moderators have time I would like to know for sure if a resubmit would be appropriate?
The new one I have bought from goDaddy: www.webprovince.com
The old domain, mec.mine.nu, is still pointing to my site. I use a 301 and a redirect for clients requesting a page prefixed with the old domain name to the new www.webprovince.com domain name.
This is the jsp(Java Server Pages) code I use to do the redirect:
<%
String requestedHost = request.getHeader("host");
if(requestedHost != null && requestedHost.equalsIgnoreCase("mec.mine.nu") || requestedHost.equalsIgnoreCase("webprovince.com")) {
response.setStatus(response.SC_MOVED_PERMANENTLY);
response.addHeader("Location","http://www.webprovince.com" + request.getRequestURI());
}
%>
Note that it is still the same site on the same physical location, the only thing changed is the domain name.
I submitted the old domain - mec.mine.nu - to dmoz about 2 weeks ago, and of course I haven't got listed yet.
The title I used in the submission of the old domain name was the same as the domain name, i.e. mec.mine.nu. Of course I would like to change this, but I don't know how to change a submission when you not have got listed.
My questions are if I should submit again to dmoz with the new domain name, www.webprovince.com, even thou it point to the same site as mec.mine.nu does?
Could this be considered spamming?
Any suggestions on what I should do?I know they have an update listing service, but since I am not listed yet...
If the moderators have time I would like to know for sure if a resubmit would be appropriate?