Site5 - Built For Designers & Developers MENU
Home  ›  redirect

Apache: How to Redirect HTTP Requests to HTTPS

Below we are going to show you how to redirect all non-https request to use https. Why would you do this? This depends on what kind of site you are hosting. For example, if you are running a billing site, and you want to ensure that all trafic is secure, […]

Domains: How to setup Domain Redirects

The Redirects interface allows you to send all of the visitors of a domain or particular page to a different URL. For example, if create a page with a long URL, use the Redirects interface to add a redirect from a short URL to the long URL. Visitors can enter […]

Apache: How to set your domain to redirect to WWW by default

Add the below to your .htaccess file in order to have your-domain redirect to www.your-domain. Just make sure where it says “your-domain.com” to fill in your domain on both lines 2 and 3. RewriteEngine on RewriteCond %{HTTP_HOST} !^www.you-domain.com$ RewriteRule ^(.*)$ http://www.your-domain.com/$1 [R=301] Why would you do this? It makes your […]

Money Back Guarantees