Mobile app version of vmapp.org
Login or Join
Tiffany637

: Free domains for site names? I am going to create a forum for my clan from a game and I was looking for a way to point/redirect to an ugly/long domain name from a shorter domain name. I

@Tiffany637

Posted in: #Domains #Free

I am going to create a forum for my clan from a game and I was looking for a way to point/redirect to an ugly/long domain name from a shorter domain name.

I am looking for a provider similar to www.freedomain.co.nr/ but I am looking for more options and different domain extensions to decide which one would be easiest to use.

So it would be something like niceclanname.domainext -> unglyhardnametouseandremember.com/clan/
What are the available services that do this?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Tiffany637

1 Comments

Sorted by latest first Latest Oldest Best

 

@Turnbaugh106

If the question really is just about redirecting from one domain to a site on another, I have some solutions:

Frame forwarding

Where you set up a frameset on a page that basically takes up 100% of the page and loads the content from another site into it.

So you type: site1.com and it has a simple HTML frame page, which then loads in sitwithlongurl.com/evenlongerbit
Advantage - no server access needed other than FTP and the ability to upload a simple page. Users will see your short URL in their browser bar.
Disadvantage - your short URL won't get indexed as the full site, it will just be indexed as one single page of frames; not really ideal (i'd hide it from the index anyway as it will be duplicate content).

HTTP Redirect

Where you set up a page on your domain that simply redirects, ie using PHP:


<?php
header("location: www.sitwithlongurl.com/evenlongerbit );
die;
?>



Advantage - its pretty clean, its transparent. Teleports users directly to the long URL and makes no secret of what its doing.
Disadvantage - You'll need PHP on the hosting server. Fairly common tho.

DNS

If you have control of DNS records, you can manipulate them and forward to another site at that level.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme