There's no such thing as a stupid question, but they're the easiest to answer.
JoinTour
Login
 
Tag Cloud
access audio avg avg 8 bios blue screen boot bsod computer connection cpu crash css dell desktop dma driver drivers dvd email error excel explorer firefox firefox 3 freeze gimp graphics hard drive hardware hijackthis hjt install internet internet explorer itunes keyboard laptop macro malware monitor motherboard network networking outlook outlook 2003 outlook 2007 outlook express pio problem problems router seo server slow sound sp3 spyware trojan usb video virtumonde virus vista vundo windows windows vista windows xp winxp wireless
Web Design & Development
Search
Search in:
 
Advanced Search
Tech Support Guy Forums > Internet & Networking > Web Design & Development >
Solved: question concerning forwarding URL...


HELLO AND WELCOME! Before you can post your question, you'll have to register -- it's completely free! Click here to join today! We highly recommend that you print a copy of our Guide for New Members. Enjoy!

 
Thread Tools
tpg00's Avatar
Junior Member with 10 posts.
 
Join Date: Oct 2007
Experience: somewhat knowledegable
25-Feb-2008, 04:35 PM #1
Question Solved: question concerning forwarding URL...
I know what I want but not the right term for it.

I want to have a URL like www.BigDogs.net and I want it to open/forward to my actual website www.reallyLONGURL.com.

What is it that I need? I have seen a guy that had 3 different URL on his page that got my attention and when I clicked them - they all took me to his main website with the really long URL.

So can you tell me what this is called and how and where I accomplish it ?

Thanks a million,
Teresa
tomdkat's Avatar
Computer Specs
Distinguished Member with 3,527 posts.
 
Join Date: May 2006
Location: S.F. Bay Area, CA
Experience: Intermediate
25-Feb-2008, 04:37 PM #2
Is "TinyURL" what you're looking for? Do a search on "TinyURL" to get some links.

Peace...
madd74's Avatar
Computer Specs
Senior Member with 208 posts.
 
Join Date: Nov 2003
Location: Des Moines, IA
Experience: Advanced
26-Feb-2008, 01:00 AM #3
otherwise, if you have access to .htaccess you could use 301 redirects

TheRobatron's Avatar
Computer Specs
Senior Member with 417 posts.
 
Join Date: Oct 2007
Location: England
Experience: Intermediate
29-Feb-2008, 02:51 PM #4
You can use javascript redirection:
Code:
<script type="text/javascript">
window.location("longURL.com")
</script>
but that's not really very reliable or good practice.

So you can use .htaccess to do a server-side redirect (as suggested before). The format for redirection is:

redirect accessed-file URL-to-go-to

so

redirect /dir/oldfile.html http://www.longURL.com/dir/newpage.html

A 301 redirect is used for telling the server and search engine that a domain has permanently moved (which I gather is not what you want).

Hope that helps
__________________
There's no place like 127.0.0.1

tpg00's Avatar
Junior Member with 10 posts.
 
Join Date: Oct 2007
Experience: somewhat knowledegable
29-Feb-2008, 07:12 PM #5
The page I want to forward to is already created for me - a company page. I can't adjust the code that is why another person I know uses different URL's to catch your interest to click it and it then opens his page. I would like to do that as well. I was thinking I would have to get another webpage then do a forward on that page to the other page. But his is FAST, you don't see another page even open or tell you it is forwarding you or anything, you just click that url and poof his company web page opens.

so does this info help more? That is why the 301 redirect would not work for me.
namenotfound's Avatar
Computer Specs
Distinguished Member with 2,109 posts.
 
Join Date: Apr 2005
Location: New York
Experience: I know what I know, I am
29-Feb-2008, 08:27 PM #6
Quote:
Originally Posted by tomdkat View Post
Is "TinyURL" what you're looking for? Do a search on "TinyURL" to get some links.

Peace...
You can't choose your own domain with TinyURL
He gave a specific domain in his example (BigDogs)
namenotfound's Avatar
Computer Specs
Distinguished Member with 2,109 posts.
 
Join Date: Apr 2005
Location: New York
Experience: I know what I know, I am
29-Feb-2008, 08:31 PM #7
Quote:
Originally Posted by tpg00 View Post
That is why the 301 redirect would not work for me.
Why? A 301 sounds exactly like what you want. It redirects without the need of a separate webpage, so it goes "fast" (as you put it).


RewriteRule / http://www.longdomain.com/page.html [R=301,L]
tomdkat's Avatar
Computer Specs
Distinguished Member with 3,527 posts.
 
Join Date: May 2006
Location: S.F. Bay Area, CA
Experience: Intermediate
29-Feb-2008, 11:41 PM #8
Quote:
Originally Posted by namenotfound View Post
You can't choose your own domain with TinyURL
He gave a specific domain in his example (BigDogs)
Hey, leave me alone!

Peace...
tpg00's Avatar
Junior Member with 10 posts.
 
Join Date: Oct 2007
Experience: somewhat knowledegable
01-Mar-2008, 09:35 PM #9
I don't think I am asking the question right therefore no one understands what I need.

I can't write the code on the webpage / it has already been created for me and only the company can do the code different. Ok lets say I have a avon webpage and I want to share this URL on many other websites but not my URL [example: www.avon.com/tpg] now when I post that URL it is boring not catchy. So i want to use a URL like www.HealthyMoney.com and I want it to redirect to the avon page. See Avon created the page for me so I can't mess with the code to add the redirect code. Now with this information can someone tell me how to do this?

.
cwwozniak's Avatar
Distinguished Member with 7,767 posts.
 
Join Date: Nov 2005
Location: McHenry, IL - USA
Experience: Enough to be dangerous
01-Mar-2008, 09:53 PM #10
You do not modify anything on the www.avon.com/tpg site that has the actual content you want people to see when they go to the other adresses.

You would need to register and host the www.HealthyMoney.com and any other domain names you wish to redirect to the www.avon./tpg site. The redirection code then gets put on those servers. There may be some companies like http://www.domainredirect.com/ (found them with Google but know nothing about them) that are set up for providing such services.
__________________
Chuck W.
tomdkat's Avatar
Computer Specs
Distinguished Member with 3,527 posts.
 
Join Date: May 2006
Location: S.F. Bay Area, CA
Experience: Intermediate
01-Mar-2008, 10:32 PM #11
Quote:
Originally Posted by cwwozniak View Post
You would need to register and host the www.HealthyMoney.com and any other domain names you wish to redirect to the www.avon./tpg site. The redirection code then gets put on those servers.
Couldn't this redirection be done at the DNS level? If so, then no redirection code is needed since the domain *itself* will resolve to the right URL. Would a CNAME DNS definition work? Like:

www.healthymoney.com CNAME www.avon.com/tpg

I haven't tried anything like that before so I don't know if it would actually work or not.

Peace...
cwwozniak's Avatar
Distinguished Member with 7,767 posts.
 
Join Date: Nov 2005
Location: McHenry, IL - USA
Experience: Enough to be dangerous
02-Mar-2008, 12:00 AM #12
Quote:
Originally Posted by tomdkat View Post
Couldn't this redirection be done at the DNS level? ... Would a CNAME DNS definition work?[/url]

I haven't tried anything like that before so I don't know if it would actually work or not.
Yes, it could probably be done with CNAME definitions. As far as I know, you still need to register the domain names for each of the aliases you wish to use. The registrar would either set up the DNS records on their name server for you or give you information on how to access them yourself.

I have not done it personally though. One of our company web sites does have a couple of alias URLs. The hosting company of the primary site took care of all the details of registering the alias domain names for us and pointing them to the primary site.
__________________
Chuck W.
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are Off
Refbacks are Off

You Are Using:
Server ID
Advertisements do not imply our endorsement of that product or service.
All times are GMT -4. The time now is 06:06 AM.
Copyright © 1996 - 2008 TechGuy, Inc. All rights reserved.
Powered by vBulletin, Copyright © 2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Powered by Cermak Technologies, Inc.