Log in

View Full Version : Auto URL Shortener on Another Domain


vivoperdio
08-04-2010, 06:55 AM
How to shorten URL like screenshot below:

http://img8.imageshack.us/img8/8974/screen234.png

So if it's https://vborg.vbsupport.ru/showthread.php?t=247939

It would shorten to http://www.vb.org/247939 [EXAMPLE]

I think it's only .htaccess styling and no need vBulletin Modification, any help would be appreciated.

Thank you for your kind attention and help :)

vivoperdio
08-12-2010, 09:52 AM
<i>*bump*</i> Anybody here ?!

BirdOPrey5
08-16-2010, 08:50 PM
Assuming you own the shorter domain (vb.org in your example) AND that it's setup to show the same content as the longer domain already (vbulletin.org) then you just need an .htaccess file in your web root directory...

For example my code rewrites http://juot.net/ to http://www.juot.net/


RewriteEngine on

RewriteCond %{HTTP_HOST} ^juot.net$
RewriteRule ^(.*)$ "http\:\/\/www\.juot\.net\/$1" [R=301,L]



This site gives more info:
http://www.affiliatebeginnersguide.com/domains/redirection.html
and recommends tbe following htaccess code:

#Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.olddomain.com$[OR]
RewriteCond %{HTTP_HOST} ^olddomain.com$
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [R=301,L]


where olddomain.com would be your 'long' url and newdomain.com would be your short url.

vivoperdio
08-23-2010, 09:02 AM
but that still using https://vborg.vbsupport.ru/showthread.php?t=12345

how to make if people visit http://vb.org/12345 they're automatically forwarded to https://vborg.vbsupport.ru/showthread.php?t=12345 ?

BirdOPrey5
08-23-2010, 02:02 PM
So you want the address bar to say "vb.org" but show the info from "vbulletin.org" ?

That I don't know.

vivoperdio
08-24-2010, 01:12 AM
it doesn't matter on address bar will show vb.org or vbulletin.org

but if people visit http://vb.org/12345 they will be forwarded to https://vborg.vbsupport.ru/showthread.php?t=12345

dartho
10-16-2010, 12:45 AM
Check here: https://vborg.vbsupport.ru/showthread.php?t=241008