Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi @rafaelpich,
Can you be a little more specific, do you need to redirect your whole website to another or just create a A href link so that when it clicks it opens another website?
Let’s assume it’s the first, in your .htaccess file you can add the following for this to work
- RewriteEngine on
- RewriteRule ^(.*)$ http://www.newdomain.com/ [R=301,L]
where newdomain.com will be the domain you want to redirect yours to.
If you want to use HTML to redirect when a link is clicked use the following
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="7; url='https://www.digitalocean.com'" />
</head>
<body>
<p>Please follow <a href="https://www.digitalocean.com">this link</a>.</p>
</body>
</html>
Hi there,
In addition to what has been mentioned already, it sounds like that you might be linking your website via HTTPS, eg:
<a href="https://yourwebsite.com>Site</a>
However, if you don’t have an SSL certificate this will not work. What you could do is to install a free certificate using the steps here:
If this still does not work, feel free to share the HTML snippet in place that is not working and we could try to advise you further.
Best,
Bobby