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, […]
In this article we are going to show you how to enable the default htaccess file that comes with Joomla. For this article, we are going to use the File Manager built into SiteAdmin/cPanel. 1) Access the File Manager and browse to the base of your Joomla website. 2) Locate […]
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 […]
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 […]