How to make the website address short? or How, using a domain with a short name, to forward a visitor to another site with a long and not memorable address? Need HTML code!
- oneUnfortunately, no way. - dogmar
|
5 answers
will help you http://bit.ly drive in your URL click Shorten and here's a short name for you)
|
Here is a (incomplete) list of services that allow you to redirect to your address: http://longurl.org/services
Popular services:
|
<META HTTP-EQUIV="REFRESH" CONTENT="N;URL=адрес">
- Plus for reading the question) - Sh4dow
|
An effective solution would be to redirect directly from the server with the code 301.
Apache .htaccess
Redirect 301 / http://www.example.com
Php
<?php header('Location: http://www.example.com', true, 301); exit(); ?>
Or on the client side using Javascript
<script type="text/javascript"> window.location = "http://www.example.com"; </script>
but using canonical for search engine optimization
<link rel="canonical" href="http://www.example.com">
Alternatively, you can use the service to reduce links.
|
I use http://goo.gl - there is a redirect without ads. Just keep in mind that the link register is important there. But other similar services seem to be the same.
|