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!
Thanks a lot. I got the permalinks working for my Wordpress Installation.
I cant seem to get my permalinks working for wordpress, I get an error not found??
these tutorials are really saving my days here! Thanks, I will continue to be a digital ocean customer just to show support for these tutorials.
@tjcrandall: I recommend getting rid of these .htaccess rules and creating a separate virtualhost for mail.example.com and having it redirect traffic to example.com/mail
It should look like this: <pre><VirtualHost *:80> ServerName mail.example.com
Redirect 301 / http://example.com/mail </VirtualHost></pre>
@tjcrandall: Try adding trailing slashes to the Redirect directives above. Does that fix it?
I am missing one “/” here. When I redirect http://www.olddomain.pt/shop/… I get http://www.newdomain.ptshop/…
you can see that between …pt/shop… is missing one “/”
The only way to pass this is put one / in
<VirtualHost *:443> ServerAdmin nunomarques@ioutletstore.pt ServerName http://www.olddomain.pt:443 DocumentRoot /var/www/html/directory Redirect permanent / https://www.newdomain.pt/ …
<IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_HOST} !^www.newdomain.pt RewriteRule .* https://www.newdomain.pt/%{REQUEST_URI} [R=301,L] </IfModule> Regards