config.php edit to redirect domain Print

  • config, php, redirect
  • 0

Used to ensure your domain loads https:// instead of http://

<!-- config.php -->
config.php ( If you want to use yoursite with "www" )
define('HTTP_SERVER', 'https://www.printingready.com/');
define('HTTPS_SERVER', 'https://www.printingready.com/');
If you want to use yoursite without "www"
config.php
<?php
// HTTP
define('HTTP_SERVER', 'https://printingready.com/');

// HTTPS
define('HTTPS_SERVER', 'https://printingready.com/');


Was this answer helpful?

« Back